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