https://github.com/shader-slang/slang
Raw File
Tip revision: 389d21d982da34815b65b10cae63088c397eecc8 authored by Theresa Foley on 11 August 2021, 19:24:43 UTC
Handle unexpected character in mangled names (#1919)
Tip revision: 389d21d
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