summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t09/before/test.java
blob: db3f02ed19768bb327fc9d19caa02c22379c4245 (plain)
1
2
3
4
5
6
7
8
public class Test {
    Integer[] f = new Integer[0];
    void foo() {
      bar(1, f);
    }

    void bar(int i, Integer[] g){}
}