https://github.com/shader-slang/slang
Raw File
Tip revision: 34acec2258ef1586564fe51126b25910b3202541 authored by Yong He on 23 March 2023, 06:59:22 UTC
Fix generic lowering regression due to IR deduplication. (#2723)
Tip revision: 34acec2
import-exported-b.slang
//TEST_IGNORE_FILE:

// This file defines the code that will be (transitively) imported into `import-exported.slang`

float foo(float x) { return x; }
back to top