blob: 41242231ca9c912461b1cfe8771351551f4c2f95 [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 = (a / b);
return;
}