blob: 9628eae80af43b123f67accc44c7c5e56767546a [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;
}