Files
2014-12-06 11:38:01 +03:00

22 lines
456 B
Java

// "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();
}