blob: 27fcbd88564b683913c4bcf254f46a17d2ddc254 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int3 const a = int3(1, 2, 3);
int3 const b = int3(0, 5, 0);
int3 const r = (int3(1, 2, 3) % int3(0, 5, 0));
return;
}