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