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