1#include <metal_stdlib>
2
3using namespace metal;
4kernel void f() {
5  float const a = 1.0f;
6  uint const b = as_type<uint>(a);
7  return;
8}
9
10