blob: eed59d0bbefea433471567d16976ca2c6e2eab91 [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;
}