blob: 62360a8c331d0683532fd71124c452243988981b [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;
}