blob: 487337f66ac7222253989a5d090d55c477b38142 [file] [log] [blame]
class Super {
Super(String s){}
void foo() {
Super s = new Super("");
s.bar();
}
void bar() {}
}