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