mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
24 lines
430 B
Java
24 lines
430 B
Java
// "Replace Implements with Static Import" "true"
|
|
interface I<caret>n {
|
|
int FOO = 0;
|
|
}
|
|
|
|
class II implements In {
|
|
public static void main(String[] args) {
|
|
System.out.println(FOO);
|
|
}
|
|
}
|
|
|
|
class II1 implements In {
|
|
public static void main(String[] args) {
|
|
System.out.println(II1.FOO);
|
|
}
|
|
}
|
|
|
|
class Uc {
|
|
static final String FOO = "";
|
|
void g() {
|
|
System.out.println("" + II.FOO);
|
|
}
|
|
}
|