blob: 48fc0ec41ec4042286ee4f865279bd20ecafa8ea [file] [log] [blame]
class Test {
void foo(String s) {
System.out.println("hello");
}
void bar() {
foo(null);
}
}