dmd/compiler/test/runnable/sctor2.d
2023-07-12 10:37:42 -07:00

20 lines
237 B
D

// REQUIRED_ARGS: -w -dw
// PERMUTE_ARGS:
/***************************************************/
// 15665
scope class C15665 (V)
{
this () {}
}
void test15665()
{
scope foo = new C15665!int;
}
void main()
{
test15665();
}