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