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