blob: 6bb182fb744abf7bdb6a4ddb369fd7cff08cd75c [file] [log] [blame]
// "Replace Implements with Static Import" "true"
interface I<caret>n {
int FOO = 0;
}
class II implements In {
public static void main(String[] args) {
System.out.println(FOO);
}
}
class II1 implements In {
int FOO = 9;
public static void main(String[] args) {
System.out.println(In.FOO);
}
}