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