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