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