http://d.puremagic.com/issues/show_bug.cgi?id=10496
Dicebot <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Dicebot <[email protected]> 2013-06-28 09:21:47 PDT --- I think this is part of a bigger problem: ---------------------------------------- class A { immutable int x; void delegate() f; this() { x = 40; f = () { x = 42; }; } } void main() { import std.stdio; auto a = new A(); writeln(a.x); a.f(); writeln(a.x); } ---------------------------------------- 40 42 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
