#include using namespace metal; kernel void f() { uint3 const a = uint3(1u, 2u, 3u); uint const b = 4u; uint3 const r = (a - b); return; }