mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 53f1e33ee88b8336a3cd20d55bd640cfbc88c580
16 lines
268 B
Java
16 lines
268 B
Java
// "Replace implements with static import" "true-preview"
|
|
public class X implements II {
|
|
void bar() {
|
|
System.out.println(FOO);
|
|
System.out.println(BAZZ);
|
|
}
|
|
}
|
|
|
|
interface I<caret>I extends I1{
|
|
String FOO = "foo";
|
|
}
|
|
|
|
interface I1 {
|
|
String BAZZ = "bazz";
|
|
}
|