blob: 79a11c38ce830db0724072594a0ccffedbf4b0ab [file] [log] [blame]
class Super {
void foo() {
Super s = new Super();
s.bar();
}
void bar() {}
}