June 03, 2012 [Issue 8193] New: wrong error message on escaping initialized immutable instance field | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=8193 Summary: wrong error message on escaping initialized immutable instance field Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: timon.gehr@gmx.ch --- Comment #0 from timon.gehr@gmx.ch 2012-06-03 10:33:47 PDT --- DMD 2.059/2.060head: struct A{ immutable int z=2; auto foo(){return &z;} } Error: escaping reference to local z Either z should not be accessible at all or the code should compile. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
December 28, 2012 [Issue 8193] wrong error message on escaping initialized immutable instance field | ||||
---|---|---|---|---|
| ||||
Posted in reply to timon.gehr@gmx.ch | http://d.puremagic.com/issues/show_bug.cgi?id=8193 Andrej Mitrovic <andrej.mitrovich@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |andrej.mitrovich@gmail.com Resolution| |DUPLICATE --- Comment #1 from Andrej Mitrovic <andrej.mitrovich@gmail.com> 2012-12-27 17:23:46 PST --- Unfortunately this is another case of Issue 3449. If you remove the initualizer it will work (not also the .sizeof property of the struct when using/not using initializers for const/immutable fields). *** This issue has been marked as a duplicate of issue 3449 *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation