blob: 42ba0cf483b1503ed57fcf9e9a3b4e9932874b26 [file] [log] [blame]
class Super {
void foo() {
Super s = new Super();
s.bar();
}
static int bar(){return 1;}
}