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