blob: 4954dedb1f45ac3c61b4afae608fff9b466156f5 [file]
#include <metal_stdlib>
using namespace metal;
struct S {
int m;
uint3 n;
};
uint f() {
S const a = S{};
return a.n.z;
}
[[max_total_threads_per_threadgroup(1)]]
kernel void v() {
f();
}