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