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