blob: a5063ac390a6b8481b1daf2e11c50a5a319a4615 [file] [log] [blame]
dan sinclair58752db2023-11-23 17:40:23 +00001#include <metal_stdlib>
2
3using namespace metal;
4void a() {
5 int a_1 = 0;
6 switch(a_1) {
7 case 0:
8 case 2:
9 case 4: {
10 uint b = 3u;
11 switch(b) {
12 case 0u: {
13 break;
14 }
15 case 1u:
16 case 2u:
17 case 3u:
18 default: {
19 uint c = 123u;
20 switch(c) {
21 case 0u: {
22 break;
23 }
24 default: {
25 return;
26 break;
27 }
28 }
29 return;
30 break;
31 }
32 }
33 break;
34 }
35 case 1:
36 default: {
37 return;
38 break;
39 }
40 }
41}
42