blob: f289760a58c8c898cc2e96cbcb803a5fbf823d3d [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct S {
int m;
uint3 n;
};
uint f() {
S const a = S{};
return a.n.z;
}