mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 12:10:37 +07:00
GitOrigin-RevId: 53f1e33ee88b8336a3cd20d55bd640cfbc88c580
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";
|
|
} |