blob: 06f9014b529466bce7446496d69ac452fd827a46 [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;
}