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

13 lines
163 B
D

/*
PERMUTE_ARGS:
*/
class C { @safe ~this() { } }
class D : C { }
void fwd() @safe
{
scope o = new Object();
scope c = new C();
scope d = new D();
}