digitalmars.D.bugs - [Issue 4537] New: Confusing error message when foreach lacks semicolon (;)
- d-bugmail puremagic.com (33/33) Jul 30 2010 http://d.puremagic.com/issues/show_bug.cgi?id=4537
- d-bugmail puremagic.com (10/10) Jul 30 2010 http://d.puremagic.com/issues/show_bug.cgi?id=4537
- d-bugmail puremagic.com (12/12) Jan 20 2013 http://d.puremagic.com/issues/show_bug.cgi?id=4537
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 puremagic.com ReportedBy: tomeksowi gmail.com 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: -------
Jul 30 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4537 bearophile_hugs eml.cc changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bearophile_hugs eml.cc See bug 3818 too. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jul 30 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4537 Andrej Mitrovic <andrej.mitrovich gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |andrej.mitrovich gmail.com Resolution| |DUPLICATE 13:27:13 PST --- *** This issue has been marked as a duplicate of issue 3818 *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 20 2013