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