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