blob: ce03e023d8a61a9063dac1e4613e247749ac3130 [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;
}