blob: 45e42493fecaa6aab31432de20c6c05a01751800 [file] [log] [blame]
class Super {
Super(String s) {
if (s == null) return;
System.out.println("s:" + s);
}
void foo() {
Super s = new Super(null);
s.bar();
}
void bar() {}
}