blob: c161767a7d6d451401c02003ea0540d86778b152 [file] [log] [blame]
static float v = 0.0f;
void x(inout float p) {
p = 0.0f;
}
void g() {
x(v);
}
void f() {
g();
return;
}