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

interface JIRA248Intf {
    default int foo() { return 1; }
}

interface JIRA248Intf2 {
    default int baz() { return 40000; }
}

class JIRA248Sup2 {
    public int bar() { return 200; }
}

class JIRA248Sup extends JIRA248Sup2 implements JIRA248Intf {
}

public class JIRA248 extends JIRA248Sup implements JIRA248Intf2 {
    public int foo() { return 70; }
    public int bar() { return 3000; }
    public int baz() { return 500000; }
}