blob: 760ab605a99d8993c32cc75f39b19fad90b9ea59 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int const a = 1;
uint const b = 2u;
int const r = as_type<int>((as_type<uint>(1) << 2u));
return;
}