]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/imports/a14407.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / imports / a14407.d
1 module imports.a14407;
2
3 deprecated class C
4 {
5 private deprecated new (size_t, string)
6 {
7 return null;
8 }
9 private this(int) {}
10 }
11
12 deprecated struct S
13 {
14 private deprecated new (size_t, string)
15 {
16 return null;
17 }
18 private this(int) {}
19 }