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.

Target127.java 393B

1234567891011121314151617181920
  1. package testproxy;
  2. public class Target127 {
  3. public interface Item { }
  4. public interface CovariantItem extends Item { }
  5. public interface Super {
  6. Item item();
  7. }
  8. public interface Sub extends Super {
  9. CovariantItem item();
  10. }
  11. public static class RealSub implements Sub {
  12. public CovariantItem item() {
  13. return null;
  14. }
  15. }
  16. }