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