mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
27 lines
455 B
Java
27 lines
455 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);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@link I#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);
|
|
}
|
|
}
|