blob: 7c0da42013a186d5feae2eb4591621cead8ec1ed [file] [log] [blame]
import static In.FOO;
// "Replace Implements with Static Import" "true"
interface In {
int FOO = 0;
}
class II {
public static void main(String[] args) {
System.out.println(FOO);
}
}
class II1 {
int FOO = 9;
public static void main(String[] args) {
System.out.println(In.FOO);
}
}