digitalmars.D.bugs - [Issue 4442] New: Destructors not called for new-allocated struct objects
- d-bugmail puremagic.com (28/28) Jul 09 2010 http://d.puremagic.com/issues/show_bug.cgi?id=4442
- d-bugmail puremagic.com (12/12) Jul 09 2010 http://d.puremagic.com/issues/show_bug.cgi?id=4442
http://d.puremagic.com/issues/show_bug.cgi?id=4442
Summary: Destructors not called for new-allocated struct
objects
Product: D
Version: unspecified
Platform: Other
OS/Version: Mac OS X
Status: NEW
Severity: major
Priority: P2
Component: DMD
AssignedTo: nobody puremagic.com
ReportedBy: andrei metalanguage.com
20:20:39 PDT ---
Example brought up by Sean Kelly in private correspondence:
struct S1{ ~this() { writeln("dtor"); } }
void main() {
auto a = S1();
auto b = new S1();
delete b;
auto c = new S1();
c = null;
GC.collect();
}
"dtor" is only printed twice.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jul 09 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4442
Rob Jacques <sandford jhu.edu> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |sandford jhu.edu
Resolution| |DUPLICATE
*** This issue has been marked as a duplicate of issue 2834 ***
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jul 09 2010








d-bugmail puremagic.com