blob: ba6626b1949d8e2c219669657912052fd6c94c04 [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 % as_type<int>((as_type<uint>(b) + as_type<uint>(b))));
return;
}