blob: deb45e5befea743ff7080fc1340b023a33e2a461 [file] [log] [blame]
// "Replace Implements with Static Import" "true"
public class X implements <caret>I {
void foo() {
System.out.println(FOO);
}
}
interface I {
String FOO = "foo";
}