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