mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 06:32:48 +07:00
GitOrigin-RevId: 53f1e33ee88b8336a3cd20d55bd640cfbc88c580
12 lines
185 B
Java
12 lines
185 B
Java
import static I.FOO;
|
|
|
|
// "Replace implements with static import" "true-preview"
|
|
public class X {
|
|
void foo() {
|
|
System.out.println(FOO);
|
|
}
|
|
}
|
|
|
|
interface I {
|
|
String FOO = "foo";
|
|
} |