mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
16 lines
260 B
Java
16 lines
260 B
Java
// "Replace Implements with Static Import" "true"
|
|
public class X implements II {
|
|
void bar() {
|
|
System.out.println(FOO);
|
|
System.out.println(BAZZ);
|
|
}
|
|
}
|
|
|
|
interface I<caret>I extends I1{
|
|
String FOO = "foo";
|
|
}
|
|
|
|
interface I1 {
|
|
String BAZZ = "bazz";
|
|
}
|