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