blob: 56608039cf5e61998efa41bb88a3832ea01c99a0 [file] [log] [blame]
class Test {
void foo(int i) {
int p = i;
}
void bar() {
foo(1);
}
}