blob: c09cb715cf7b3902dda2047b455b73ce82a2decb [file]
#include <metal_stdlib>
using namespace metal;
void f(int a) {
int const a_1 = a;
int const b = a_1;
}
kernel void v() {
f(1);
}