aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test5/JIRA246.java
blob: da23f6ea5617c7a7fbb78408e5dfe226aa1e16dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package test5;

public class JIRA246 {
    public interface Test {
        default void defaultMethod() {
        }
        void test();
    }

    public interface IA {
        default int get() {
            return 0;
        }
    }

    public static class A implements IA {
        public int anotherGet() {
            return 1;
        }
    }
}