blob: 5a8c360d6e9c8168a347f2d9466b1f00b45e3cae [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void f() {
int i = 0;
int j = 0;
float2x2 const m = float2x2(float2(1.0f, 2.0f), float2(3.0f, 4.0f));
float const f = m[i][j];
}