dmd/compiler/test/compilable/shared_destructor.d
2022-07-09 18:53:07 +02:00

21 lines
211 B
D

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