summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t115/after/test.java
blob: 8d69a2330c70a24346a4666b774e6f8855585cc5 (plain)
1
2
3
4
5
6
7
8
class Test {
    void foo(String... i) {
    }

    void bar() {
      foo("str", 2);
    }
}