blob: 24357aaeafa0ad2d2eeff6dd738657ea2d6607ef [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
float f() {
float3 const v = float3(1.0f, 2.0f, 3.0f);
int i = 1;
return v[i];
}