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