]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/imports/ice10600a.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / imports / ice10600a.d
1 module imports.ice10600a;
2
3 struct Appender(A : T[], T)
4 {
5 this(T[]) {}
6 }
7
8 Appender!(E[]) appender(A : E[], E)()
9 {
10 return Appender!(E[])(null);
11 }