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