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