summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/runnable/sctor2.d
blob: a2367cf79994906b8e83d871cd90e472e933b1e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// REQUIRED_ARGS: -w -de
// PERMUTE_ARGS:

/***************************************************/
// 15665

scope class C15665 (V)
{
    this () {}
}

void test15665()
{
    scope foo = new C15665!int;
}

void main()
{
    test15665();
}