blob: fd5b12e94cdf6585225b0b5f02592d810d418312 [file] [log] [blame]
class Test {
void foo(int i) {
System.out.println("hello");
}
void bar() {
foo(0);
}
}