https://github.com/shader-slang/slang
Raw File
Tip revision: 12ec9b832fc74faba7162e54e04f7f48878ea88e authored by Ellie Hermaszewska on 12 April 2023, 21:01:06 UTC
Downgrade github runner to 20.04 (#2792)
Tip revision: 12ec9b8
import-subdir-search-path-repro.slang
//DISABLE_TEST:SIMPLE: -Itests/front-end/subdir -dump-repro import-subdir-search-path-repro.slang-repro
//DISABLE_TEST:SIMPLE_EX: -extract-repro import-subdir-search-path-repro.slang-repro
//DISABLE_TEST:SIMPLE: -load-repro import-subdir-search-path-repro.slang-repro

// 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); }
back to top