[Issue 8894] New: 2.059: Lookup error message has become uninformative

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Oct 25 16:11:18 PDT 2012


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

           Summary: 2.059: Lookup error message has become uninformative
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: regression
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: andrej.mitrovich at gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2012-10-25 16:11:17 PDT ---
module test;
struct Foo { }

void main()
{
    Foo f;
    auto x = f.x;
}

2.058:
$ dmd test.d
test.d(6): Error: no property 'x' for type 'Foo'

2.059:
$dmd test.d
test.d(6): Error: undefined identifier 'x'

Best guess: it's probably related to UFCS changes in 2.059.

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