Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }