[Issue 4352] Destructor of inner struct not callale
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Jun 19 23:00:04 PDT 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4352
--- Comment #1 from Andrei Alexandrescu <andrei at metalanguage.com> 2010-06-19 23:00:02 PDT ---
Simpler example:
import std.typecons;
struct RefCounted(T)
{
Tuple!(T, size_t) * _refCountedStore;
}
struct Payload
{
~this()
{
}
}
RefCounted!(Payload) _data;
--
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