1 package test4;
2 
3 interface JIRA220intf {
bar()4     static void bar() {
5         // Do something
6     }
7 }
8 
9 public class JIRA220 implements JIRA220intf {
foo()10     public static void foo() {
11         JIRA220intf.bar();
12     }
13 }
14