blob: aeaadc882d3fac9f1de93e84306d4a22d3fe92ed [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
float3 const a = float3(1.0f, 2.0f, 3.0f);
float const b = 4.0f;
float3 const r = (float3(1.0f, 2.0f, 3.0f) + 4.0f);
return;
}