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