yum-mirror/slang

Making it easier to work with shaders

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

Yong HeFix IRArrayType emit logic. (#2754)af062bff8

master
858 B17 linesraw
1result code = 1
2standard error = {
3tests/diagnostics/gh-1374.slang(9): error 39999: the initial-value expression for variable 'kVal' depends on the value of the variable itself
4    static const int kVal = kVal;
5                     ^~~~
6tests/diagnostics/gh-1374.slang(11): error 39999: the initial-value expression for variable 'kInf' depends on the value of the variable itself
7    static const int kInf = kInf + 1;
8                     ^~~~
9tests/diagnostics/gh-1374.slang(14): error 39999: the initial-value expression for variable 'kB' depends on the value of the variable itself
10    static const int kB = kA;
11                     ^~
12tests/diagnostics/gh-1374.slang(13): error 39999: the initial-value expression for variable 'kA' depends on the value of the variable itself
13    static const int kA = kB;
14                     ^~
15}
16standard output = {
17}