blob: 9eb5c7f74957011eaaece2f37b401b1b2e72cd29 [file] [log] [blame]
// "Replace Implements with Static Import" "false"
public class X implements <caret>I {
void foo() {
System.out.println(FOO);
System.out.println(FOO1);
System.out.println(FOO2);
System.out.println(FOO3);
System.out.println(FOO4);
System.out.println(FOO5);
}
}
interface I {
String FOO = "foo";
String FOO1 = "foo";
String FOO2 = "foo";
String FOO3 = "foo";
String FOO4 = "foo";
String FOO5 = "foo";
void foo();
}