blob: 92dcfedb46ef0c34f6f07fae443574814fbe854a [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct T {
float o;
uint p;
};
struct S {
int m;
T n;
};
uint f() {
S const a = S{};
return a.n.p;
}