blob: 47a1ae9661b38771f7008c37b0d0067220ace85b [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];
}