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