blob: 300256898a8157432a684efbb9c3655669a885ca [file] [log] [blame]
class Derived extends Base implements BaseInterface {
void foo() {
System.out.println(field);
}
public static void main(String[] args) {
new Derived().foo();
}
}