blob: 06a57842cafde59c65da3a932b46a9255aba90a2 [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][1u];
}