https://github.com/shader-slang/slang
Raw File
Tip revision: 87e7c49fbfccd54be0d1cee61fba8f309b1f792e authored by Yong He on 14 October 2021, 08:01:00 UTC
Fix a crash in `specializeDynamicAssociatedTypeLookup`. (#1979)
Tip revision: 87e7c49
import-subdir-search-path.slang
//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); }
back to top