]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/imports/a8392.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / imports / a8392.d
1 module imports.a8392;
2
3 import ice8392;
4
5 class B
6 {
7 this(B);
8 }
9
10 void foob(A a, B b)
11 {
12 a.fooa!((arg){
13 return new B(b);
14 });
15 }