blob: d0217a5a7c1868142340768de54d76987946aca7 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
half const a = 1.0h;
half const b = 2.0h;
half const r = (a * b);
return;
}