https://github.com/shader-slang/slang
Raw File
Tip revision: 7f11f883d0781952f002b3aa3222a3aa0040f18a authored by Yong He on 17 March 2023, 22:57:22 UTC
Add support for emitting cuda kernel and host functions. (#2712)
Tip revision: 7f11f88
import-with-error-extra.slang
//TEST_IGNORE_FILE:

// This file exists to be imported.
//
// It contains a semantic error that should lead to compilation failure
// in the module doing the importing.

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