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

interface JIRA250BarI {
    int foo();
}

class JIRA250Bar implements JIRA250BarI {
    public int foo() { return 1; }
}

interface JIRA250SuperI {
    JIRA250BarI getBar();
}

public class JIRA250Super extends JIRA250Super2 implements JIRA250SuperI {
}