blob: e055047d106c7dfdf8f15febc1e5d364ce1adde0 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
uint3 a = uint3(1u, 2u, 3u);
uint3 b = uint3(0u, 5u, 0u);
uint3 const r = (a / (b + b));
return;
}