summaryrefslogtreecommitdiffstats
path: root/tests/front-end/import-subdir-search-path.slang
blob: b35802f149ea7dd61c949467d8a38183fce36127 (plain)
1
2
3
4
5
6
7
8
9
10
//TEST:SIMPLE: -Itests/front-end/subdir

// Confirming import lookup via search paths work

__import import_subdir_a;

// Should realize it's the same thing
__import subdir.import_subdir_a;

float bar(float x) { return foo(x); }