blob: 0a13cd7da51e40840b42c0f6cc477ecd98ff33c4 [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>(int3(1, 2, 3));
return;
}