]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/fail_compilation/imports/a14407.d
ipa-param-manip: Be careful about a reallocating hash_map
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / imports / a14407.d
CommitLineData
b4c522fa
IB
1module imports.a14407;
2
3deprecated class C
4{
5 private deprecated new (size_t, string)
6 {
7 return null;
8 }
9 private this(int) {}
10}
11
12deprecated struct S
13{
14 private deprecated new (size_t, string)
15 {
16 return null;
17 }
18 private this(int) {}
19}