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