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