dmd/test/compilable/shared_destructor.d
2017-05-15 17:54:22 -07:00

21 lines
211 B
D

struct MaybeShared
{
this(this T)()
{
}
~this()
{
}
}
void main() {
{
auto aboutToDie = MaybeShared();
}
{
auto aboutToDie = shared MaybeShared();
}
}