dan sinclair | 58752db | 2023-11-23 17:40:23 +0000 | [diff] [blame] | 1 | #include <metal_stdlib> |
2 | using namespace metal; | ||||
3 | |||||
4 | void a() { | ||||
James Price | 1aad86d | 2024-06-03 20:48:50 +0000 | [diff] [blame] | 5 | int a_1 = 0; |
6 | switch(a_1) { | ||||
dan sinclair | 58752db | 2023-11-23 17:40:23 +0000 | [diff] [blame] | 7 | case 0: |
8 | { | ||||
9 | break; | ||||
10 | } | ||||
11 | case 1: | ||||
12 | { | ||||
13 | return; | ||||
14 | } | ||||
15 | default: | ||||
16 | { | ||||
James Price | 1aad86d | 2024-06-03 20:48:50 +0000 | [diff] [blame] | 17 | a_1 = (a_1 + 2); |
dan sinclair | 58752db | 2023-11-23 17:40:23 +0000 | [diff] [blame] | 18 | break; |
19 | } | ||||
20 | } | ||||
21 | } |