blob: bada6cc62c6ef35403c52c8dc61a307fed1d1b9d [file] [log] [blame]
// "Replace Implements with Static Import" "true"
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";
}