blob: 36c8c94ca9abc7a2d742ca82c427d8843f85a859 [file] [log] [blame]
class Test {
void foo(int i) {
i++;
}
void bar(){
foo(1);
}
}