summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/inspection/dataFlow/fixture/ReportConstantReferences_ReplaceWithString_after.java
blob: a462170b2b31a81be2923bbdd3f7ccc5fa6a405d (plain)
1
2
3
4
5
6
7
8
class Test {
  public static final String CONST = "foo bar";
  private void test() {
    String s = CONST;
    System.out.println(CONST);
  }

}