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