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