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