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.

123456789101112131415161718192021
  1. package test5;
  2. public class JIRA246 {
  3. public interface Test {
  4. default void defaultMethod() {
  5. }
  6. void test();
  7. }
  8. public interface IA {
  9. default int get() {
  10. return 0;
  11. }
  12. }
  13. public static class A implements IA {
  14. public int anotherGet() {
  15. return 1;
  16. }
  17. }
  18. }