blob: 66f2a9f66dead61ecb601be9d7c2fdfffda21b1f [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];
}