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