summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/refactoring/inplaceIntroduceConstant/replaceAllInsideParenthesized_after.java
blob: a67368d5c5d30be04b497d8e3c42fd6b0982184e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Test {

  Test foo(long l) {
    return this;
  }

    public static final long LONG = 5L;

    {
    Test t = new Test()
      .foo(-LONG)
      .foo(7L)
      .foo(-LONG);
  }
}