• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1SKIP: FAILED
2
3[numthreads(1, 1, 1)]
4void f() {
5  {
6    [loop] for(int i = 0; (i < 4); i = (i + 1)) {
7      switch(i) {
8        case 0: {
9          continue;
10          break;
11        }
12        default: {
13          break;
14        }
15      }
16    }
17  }
18  return;
19}
20C:\src\tint\test\Shader@0x000001A817AB3700(7,11-19): error X3708: continue cannot be used in a switch
21
22