]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/test37.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / test37.d
1 // PERMUTE_ARGS:
2 // REQUIRED_ARGS: -Jrunnable/extra-files
3 // EXTRA_FILES: extra-files/foo37.txt extra-files/std14198/uni.d
4
5 import std.stdio;
6
7 void main()
8 {
9 writefln(import("foo37.txt"));
10 // also want to ensure that we can access
11 // imports in a subdirectory of the -J path
12 writefln(import("std14198/uni.d"));
13 }