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