digitalmars.D.bugs - [Issue 6897] New: Problem allocating an array of local enums
- d-bugmail puremagic.com (33/33) Nov 05 2011 http://d.puremagic.com/issues/show_bug.cgi?id=6897
- d-bugmail puremagic.com (13/13) Feb 08 2013 http://d.puremagic.com/issues/show_bug.cgi?id=6897
http://d.puremagic.com/issues/show_bug.cgi?id=6897 Summary: Problem allocating an array of local enums Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: rejects-valid Severity: normal Priority: P2 Component: Optlink AssignedTo: nobody puremagic.com ReportedBy: bearophile_hugs eml.cc This program: import std.stdio; enum Foo : char { A = 'a' } void main() { Foo[] array = new Foo[5]; writeln(array); } Prints this correct output with DMD 2.057head: [A, A, A, A, A] But with this very similar program: void main() { enum Foo : char { A = 'a' } Foo[] array = new Foo[5]; } the linker gives: Error 42: Symbol Undefined _Dmain3Foo6__initZ -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Nov 05 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6897 Andrej Mitrovic <andrej.mitrovich gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |andrej.mitrovich gmail.com Resolution| |WORKSFORME 17:26:13 PST --- Resolved in git-head. There was another nested enum linker issue that was recently fixed. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Feb 08 2013