d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / imports / a8392.d
blob4677b50bbf21a56162808cc1ca47aba0763fedfd
1 module imports.a8392;
3 import ice8392;
5 class B
7 this(B);
10 void foob(A a, B b)
12 a.fooa!((arg){
13 return new B(b);
14 });