aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test4/JIRA220.java
blob: 01a98453fbd488cd695f799f35dbf1e2e8578a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test4;

interface JIRA220intf {
    static void bar() {
        // Do something
    }
}

public class JIRA220 implements JIRA220intf {
    public static void foo() {
        JIRA220intf.bar();
    }
}