mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
10 lines
183 B
Java
10 lines
183 B
Java
// "Replace implements with static import" "true-preview"
|
|
public class X implements <caret>I {
|
|
void foo() {
|
|
System.out.println(FOO);
|
|
}
|
|
}
|
|
|
|
interface I {
|
|
String FOO = "foo";
|
|
} |