mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
163 B
D
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();
|
|
}
|