summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/inspection/dataFlow/fixture/ReportConstantReferences_ReplaceWithIntConstant_after.java
blob: 11feed5f790340b50aebbc4fdd18fc3124bb1e01 (plain)
1
2
3
4
5
6
7
8
9
10
class Test {
  public static final int CONST = 23942;
  private void test(int a) {
    if (a == CONST) {
      System.out.println(<caret>CONST);
    }

  }

}