blob: 9cf1f8cfd3c7f49e4ac9c4b54976dd27c9090b65 [file] [log] [blame]
class Test {
void foo(int i) {
if (i == 0) {
i++;
}
}
void bar(){
foo(1, 2);
}
}