]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/testDIP37_10354.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / testDIP37_10354.d
1 // PERMUTE_ARGS:
2 // REQUIRED_ARGS: -o- -Icompilable/extra-files
3 // EXTRA_FILES: extra-files/pkgDIP37_10354/mbar.d extra-files/pkgDIP37_10354/mfoo.d extra-files/pkgDIP37_10354/package.d
4
5 module testDIP37_10354;
6 import pkgDIP37_10354.mfoo;
7 void main()
8 {
9 import pkgDIP37_10354;
10 foo!string(); // OK
11 bar!string(); // OK <- ICE
12 }