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