blob: 3a341b3ad269e3b061eb7028b86f0d60e089ac31 [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=19491
class Foo
{
shared this();
}
void test()
{
scope foo = new shared Foo();
}