blob: 98f1698b74dcbcc046f39e8ad4c341e3edc36f68 [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;
}