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