blob: bca1c72baa5013aef7de3587409e20569f4bf7a1 [file] [log] [blame]
dan sinclair58752db2023-11-23 17:40:23 +00001#include <metal_stdlib>
2using namespace metal;
3
4void a() {
James Price1aad86d2024-06-03 20:48:50 +00005 int a_1 = 0;
6 switch(a_1) {
dan sinclair58752db2023-11-23 17:40:23 +00007 case 0:
8 {
9 break;
10 }
11 case 1:
12 {
13 return;
14 }
15 default:
16 {
James Price1aad86d2024-06-03 20:48:50 +000017 a_1 = (a_1 + 2);
dan sinclair58752db2023-11-23 17:40:23 +000018 break;
19 }
20 }
21}