blob: b07782645f8b6ce91eb8d668ece379fdcf356c2f [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
{
[loop] for(int i = 0; (i < 4); i = (i + 1)) {
switch(i) {
case 0: {
continue;
break;
}
default: {
break;
}
}
}
}
return;
}