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