blob: d3e05ce3cb6494ddc012bd93b748c681d42d1a6a [file] [log] [blame]
class Super {
String s;
Super(String s) {
if (s != null) {
this.s = s;
}
}
void foo() {
Super s = new Super(null);
s.bar();
}
void bar() {}
}