Files
2023-10-26 10:47:21 +00:00

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";
}