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.

JIRA250Super.java 271B

1234567891011121314151617
  1. package test5;
  2. interface JIRA250BarI {
  3. int foo();
  4. }
  5. class JIRA250Bar implements JIRA250BarI {
  6. public int foo() { return 1; }
  7. }
  8. interface JIRA250SuperI {
  9. JIRA250BarI getBar();
  10. }
  11. public class JIRA250Super extends JIRA250Super2 implements JIRA250SuperI {
  12. }