summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t64/before/test.java
blob: 5583e3c06a5dda2160e23e2954875939061ca664 (plain)
1
2
3
4
5
6
7
8
9
class Test {
    void foo(int... i) {
      int[] p = i;
    }

    void bar() {
      foo(1, 2);
    }
}