blob: 3c5ec179eebf1720fcadd0c8be722c975d5bd676 [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>(a) << b));
return;
}