https://github.com/shader-slang/slang
Raw File
Tip revision: 6dca7e39292e6c5672440f6f1dbfb204a79b90d2 authored by Yong He on 03 February 2024, 20:29:12 UTC
Fix spirv emit that leads to pathological downstream time. (#3546)
Tip revision: 6dca7e3
error.slang
//TEST:SIMPLE:

// #error support

#define FIRST 0

#if FIRST
#error Not this one!
#else

#error This isn't valid!

#endif
back to top