1 2 3 4 5 6 7 8 9
package testproxy; interface Target4Super { int foo4(); } public interface Target4 extends Target4Super { int bar4(); }