mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
16 lines
266 B
Java
16 lines
266 B
Java
// "Replace implements with static import" "true-preview"
|
|
public class X implements I {
|
|
void bar() {
|
|
System.out.println(FOO);
|
|
System.out.println(BAZZ);
|
|
}
|
|
}
|
|
|
|
interface I extends I1{
|
|
String FOO = "foo";
|
|
}
|
|
|
|
interface I<caret>1 {
|
|
String BAZZ = "bazz";
|
|
}
|