2021-12-08 04:26:58 +00:00
|
|
|
SKIP: FAILED
|
|
|
|
|
2021-07-29 18:05:19 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void f() {
|
|
|
|
{
|
2021-12-03 17:51:48 +00:00
|
|
|
[loop] for(int i = 0; (i < 4); i = (i + 1)) {
|
2021-07-29 18:05:19 +00:00
|
|
|
switch(i) {
|
|
|
|
case 0: {
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2021-12-08 04:26:58 +00:00
|
|
|
C:\src\tint\test\Shader@0x000001A817AB3700(7,11-19): error X3708: continue cannot be used in a switch
|