mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
19 lines
285 B
Java
19 lines
285 B
Java
import static I1.BAZZ;
|
|
import static II.FOO;
|
|
|
|
// "Replace Implements with Static Import" "true"
|
|
public class X {
|
|
void bar() {
|
|
System.out.println(FOO);
|
|
System.out.println(BAZZ);
|
|
}
|
|
}
|
|
|
|
interface II extends I1{
|
|
String FOO = "foo";
|
|
}
|
|
|
|
interface I1 {
|
|
String BAZZ = "bazz";
|
|
}
|