blob: 72cb90c2b12f281e14f77a78c496f2a22f34856f [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int a = 4;
int3 b = int3(0, 2, 0);
int3 const r = (a / as_type<int3>((as_type<uint3>(b) + as_type<uint3>(b))));
return;
}