blob: 4140fcc6573935afd6a05a075e3cfc9b3786633b [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
half3 const a = half3(1.0h, 2.0h, 3.0h);
half3 const b = as_type<half3>(a);
return;
}