summaryrefslogtreecommitdiff
path: root/resources-en/src/intentionDescriptions/ReplaceImplementsWithStaticImportAction/after.java.template
blob: 34db405cdc67ea1200cd56c19072dbffd27edd03 (plain)
1
2
3
4
5
6
7
8
9
import static I.FOO;
public class X {
  public static void main(String[] args) {
    System.out.println(FOO);
  }
}
interface I {
  String FOO = "foo";
}