digitalmars.D.bugs - [Issue 7163] New: Can't alias an enum of an aliased struct
- d-bugmail puremagic.com (33/33) Dec 24 2011 http://d.puremagic.com/issues/show_bug.cgi?id=7163
- d-bugmail puremagic.com (11/11) Apr 19 2012 http://d.puremagic.com/issues/show_bug.cgi?id=7163
http://d.puremagic.com/issues/show_bug.cgi?id=7163 Summary: Can't alias an enum of an aliased struct Product: D Version: D2 Platform: Other OS/Version: Windows Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: andrej.mitrovich gmail.com --- Comment #0 from Andrej Mitrovic <andrej.mitrovich gmail.com> 2011-12-24 18:12:35 PST --- This is a real bug from the DIL compiler: struct Foo { enum { One, } } struct Bar { alias Foo F; alias F.One First; // alias Foo.One First; would work } void main() {} test.d(14): Error: alias test.Bar.First cannot alias an expression 0 What's interesting is that this compiles fine in DMD1. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Dec 24 2011
http://d.puremagic.com/issues/show_bug.cgi?id=7163 Andrej Mitrovic <andrej.mitrovich gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Andrej Mitrovic <andrej.mitrovich gmail.com> 2012-04-19 19:00:06 PDT --- Fixed in 2.059, don't know which commit. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 19 2012