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

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

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