[Issue 4537] New: Confusing error message when foreach lacks semicolon (; )

d-bugmail at puremagic.com d-bugmail at puremagic.com
Fri Jul 30 13:05:03 PDT 2010


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

           Summary: Confusing error message when foreach lacks semicolon
                    (;)
           Product: D
           Version: D2
          Platform: Other
        OS/Version: All
            Status: NEW
          Keywords: diagnostic
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: tomeksowi at gmail.com


--- Comment #0 from Tomasz Sowiński <tomeksowi at gmail.com> 2010-07-30 13:05:00 PDT ---
import std.stdio;
import std.range;

void main() {
    foreach (c, take(repeat('-'), 4))
        write(c);
}

I just spent a good minute trying to decypher the error message:

test.d(6): basic type expected, not 45U
test.d(6): found '45U' when expecting ')'
test.d(6): basic type expected, not 4
test.d(6): no identifier for declarator int
test.d(6): found '4' when expecting ';'
test.d(6): expression expected, not ')'

I'd expect something like "if there's no ; then it's no good".
BTW, what's that 45U?

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


More information about the Digitalmars-d-bugs mailing list