14 lines
205 B
Plaintext
14 lines
205 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
struct tint_array_wrapper {
|
||
|
int arr[1];
|
||
|
};
|
||
|
|
||
|
void f() {
|
||
|
tint_array_wrapper const tint_symbol = {.arr={1}};
|
||
|
for(int i = tint_symbol.arr[0]; ; ) {
|
||
|
}
|
||
|
}
|
||
|
|