[Issue 8006] Implement proper in-place-modification for properties

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Jan 24 23:42:25 PST 2013


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


Jacob Carlborg <doob at me.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |doob at me.com


--- Comment #3 from Jacob Carlborg <doob at me.com> 2013-01-24 23:42:16 PST ---
Same thing if you do something like this:

foo.val.x = 3;

Needs to be rewritten to:

auto __tmp = foo.val;
__tmp.x = 3;
foo.val = __tmp;

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