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