blob: 01a98453fbd488cd695f799f35dbf1e2e8578a3f [file] [log] [blame]
package test4;
interface JIRA220intf {
static void bar() {
// Do something
}
}
public class JIRA220 implements JIRA220intf {
public static void foo() {
JIRA220intf.bar();
}
}