blob: 34db405cdc67ea1200cd56c19072dbffd27edd03 [file] [log] [blame]
import static I.FOO;
public class X {
public static void main(String[] args) {
System.out.println(FOO);
}
}
interface I {
String FOO = "foo";
}