1 // RUNNABLE_PHOBOS_TEST
2 // PERMUTE_ARGS:
3 // REQUIRED_ARGS: -Jrunnable/extra-files
4 // EXTRA_FILES: extra-files/foo37.txt extra-files/std14198/uni.d
5 
6 import std.stdio;
7 
main()8 void main()
9 {
10     writefln(import("foo37.txt"));
11     // also want to ensure that we can access
12     // imports in a subdirectory of the -J path
13     writefln(import("std14198/uni.d"));
14 }
15