www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 5096] New: More readable unpaired brace error

http://d.puremagic.com/issues/show_bug.cgi?id=5096

           Summary: More readable unpaired brace error
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: diagnostic
          Severity: minor
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: bearophile_hugs eml.cc



This is a wrong D2 program:


void foo(int x)
    in {
        assert(x > 0);
    } body {
        x++;
    }
}
void main() {}


DMD 2.049 shows at compile-time:

test.d(7): unrecognized declaration


But that's not easy to understand. A simpler to understand error message may be
something like:

test.d(7): closing brace lacking a corresponding open brace.

Good error messages may shave away wasted seconds during debug, and seconds add
up.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Oct 21 2010