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