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