Thread overview | ||||||
---|---|---|---|---|---|---|
|
August 09, 2012 [Issue 8527] New: `object.destroy` doesn't destroy interfaces | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=8527 Summary: `object.destroy` doesn't destroy interfaces Product: D Version: D2 Platform: All OS/Version: All Status: ASSIGNED Severity: normal Priority: P2 Component: druntime AssignedTo: verylonglogin.reg@gmail.com ReportedBy: verylonglogin.reg@gmail.com --- Comment #0 from Denis Shelomovskij <verylonglogin.reg@gmail.com> 2012-08-09 14:05:01 MSD --- --- interface I { } class A: I { string s = "A"; this() {} } void main() { auto a = new A; a.s = "asd"; I i = a; destroy(i); assert(a.s == "A"); // fails } --- -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 09, 2012 [Issue 8527] `object.destroy` doesn't destroy interfaces | ||||
---|---|---|---|---|
| ||||
Posted in reply to Denis Shelomovskij | http://d.puremagic.com/issues/show_bug.cgi?id=8527 --- Comment #1 from Denis Shelomovskij <verylonglogin.reg@gmail.com> 2012-08-09 14:10:48 MSD --- https://github.com/D-Programming-Language/druntime/pull/286 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 09, 2012 [Issue 8527] `object.destroy` doesn't destroy interfaces | ||||
---|---|---|---|---|
| ||||
Posted in reply to Denis Shelomovskij | http://d.puremagic.com/issues/show_bug.cgi?id=8527 --- Comment #2 from github-bugzilla@puremagic.com 2012-08-09 10:35:32 PDT --- Commit pushed to master at https://github.com/D-Programming-Language/druntime https://github.com/D-Programming-Language/druntime/commit/22e74c5d183b466efec34b7f8f770458579871dc Fix Issue 8527 - `object.destroy` doesn't destroy interfaces -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 21, 2012 [Issue 8527] `object.destroy` doesn't destroy interfaces | ||||
---|---|---|---|---|
| ||||
Posted in reply to Denis Shelomovskij | http://d.puremagic.com/issues/show_bug.cgi?id=8527 klickverbot <code@klickverbot.at> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED CC| |code@klickverbot.at Resolution| |FIXED --- Comment #3 from klickverbot <code@klickverbot.at> 2012-08-21 08:31:19 PDT --- Fixed in Git master. -- 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