You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Target4.java 140B

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