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.

JIRA248.java 322B

1234567891011121314151617
  1. package test5;
  2. interface JIRA248Intf {
  3. default int foo() { return 1; }
  4. }
  5. class JIRA248Sup2 {
  6. public int bar() { return 200; }
  7. }
  8. class JIRA248Sup extends JIRA248Sup2 implements JIRA248Intf {
  9. }
  10. public class JIRA248 extends JIRA248Sup {
  11. public int foo() { return 70; }
  12. public int bar() { return 3000; }
  13. }