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