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