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