blob: 29f4004383ebc92092eb1fb2661d01258584241f [file] [log] [blame]
class Test {
void foo(int i) {
int p = i;
}
void bar() {
foo(1, 2);
}
}