blob: d9db51ed9ce8814ddfa80fcc161ee666eb2b811b [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 = as_type<int3>((as_type<uint>(4) + as_type<uint3>(int3(1, 2, 3))));
return;
}