blob: 8993cb7df94e2d677d6f3c8d706d3824daeb27fd [file] [log] [blame]
public class Inheritance {}
class Base {
void f<caret>oo(){
System.out.println("");
}
}
class Child extends Base {
void bar() {
System.out.println("");
}
}