blob: e7b1f46b8f322a8ed4a85016978bb492b318e677 [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);
}