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