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

11 lines
135 B
D

// https://issues.dlang.org/show_bug.cgi?id=19491
class Foo
{
shared this();
}
void test()
{
scope foo = new shared Foo();
}