blob: e5a0a9c60d0cb2d0980f1e2495e1008e2be2873b [file] [log] [blame]
abstract class C {
interface I {
void method1();
String method2();
void method3(String s);
default void method4() {
System.out.println("method4");
System.out.println("method5");
}
}
public String field;
public abstract String methodA();
public abstract int methodB(Object o);
public void methodC() {
System.out.println("methodC");
}
public String methodD(String s) {
return s + "s";
}
protected abstract Object methodE(String a);
protected abstract void methodF(String ... a);
}