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

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