[Issue 6786] New: Bad error message in a wrong usage of ^^ pow operator

d-bugmail at puremagic.com d-bugmail at puremagic.com
Fri Oct 7 15:46:37 PDT 2011


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

           Summary: Bad error message in a wrong usage of ^^ pow operator
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Keywords: diagnostic
          Severity: minor
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: bearophile_hugs at eml.cc


--- Comment #0 from bearophile_hugs at eml.cc 2011-10-07 15:45:52 PDT ---
This is an example of wrong D2 code that produces a correct error message:


void foo(int x) {
    enum int x2 = x;
}
void main() {}


DMD 2.056head gives:
test.d(2): Error: variable x cannot be read at compile time


This is similar wrong code:

void foo(int x) {
    enum int x2 = x ^^ 2;
}
void main() {}


But here DMD 2.056head gives a less good error message:
test.d(2): Error: variable x is used before initialization

-- 
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