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