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