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