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