blob: 21e28ab803374b9b174a3cb16191c9df5d8e60ce [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int const a = 4;
int3 const b = int3(0, 2, 0);
int3 const r = (4 % int3(0, 2, 0));
return;
}