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