https://github.com/shader-slang/slang
Raw File
Tip revision: c4790309ec46ae2f4f7c49eb50699a950ee7a9a4 authored by Yong He on 20 February 2022, 22:37:41 UTC
gfx: defer downstream shader compilation until draw/dispatch. (#2139)
Tip revision: c479030
undefined-identifier.slang
//DIAGNOSTIC_TEST:SIMPLE:
// use of undefined identifier

void foo()
{
	int a = b;
}
back to top