(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test19491.d
// https://issues.dlang.org/show_bug.cgi?id=19491

class Foo
{
    shared this();
}

void test()
{
    scope foo = new shared Foo();
}