yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Tim FoleyFix handling of errors in imported modules (#387)06f0effb8

master
201 B11 linesraw
1//TEST_IGNORE_FILE:
2
3// This file exists to be imported.
4//
5// It contains a semantic error that should lead to compilation failure
6// in the module doing the importing.
7
8void broken()
9{
10	int a = b;
11}