mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
18 lines
336 B
Java
18 lines
336 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 {
|
|
int FOO = 9;
|
|
public static void main(String[] args) {
|
|
System.out.println(In.FOO);
|
|
}
|
|
}
|