blob: 3ae3f0892150ea1d1ad23e3d6459020dd6f2f569 [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);
}