]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/imports/test57a.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / imports / test57a.d
1 module imports.test57a;
2 import imports.test57b;
3
4 // works - even fixes the error from below!
5 // C!(int) x;
6
7 // doesn't work
8 void foo() { C!(int) x; }
9
10