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