blob: efebc6be27673b2d74e13b883b06a4f64279b38b [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int3 const a = int3(1, 2, 3);
uint3 const b = as_type<uint3>(int3(1, 2, 3));
return;
}