blob: 65eb501c3eb842d9ab29a770bf74bf8288312d5c [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct S {
int m;
float4x4 n;
};
float f() {
S const a = S{};
return a.n[2u].y;
}