mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-15 11:12:59 +07:00
21 lines
325 B
Java
21 lines
325 B
Java
// "Replace Implements with Static Import" "true"
|
|
|
|
import static In.FOO;
|
|
|
|
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);
|
|
}
|
|
}
|