blob: 062cf47bebd958de6c9663d512246608143d6cb7 [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;
}