30 lines
357 B
Plaintext
30 lines
357 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
void main_1() {
|
||
|
while (true) {
|
||
|
if (false) {
|
||
|
} else {
|
||
|
break;
|
||
|
}
|
||
|
switch(42u) {
|
||
|
default: {
|
||
|
if (true) {
|
||
|
continue;
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
case 79u: {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
fragment void tint_symbol() {
|
||
|
main_1();
|
||
|
return;
|
||
|
}
|
||
|
|