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