summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t127/after/test.java
blob: 06a4d09a41a6df4886ccaad3c5b9f05116f29791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class Test {

  public long test234(int i,
                      int j)
  {
    return 1;
  }

  public void foo() {
    long i = test234(1,
                     2);
  }
}