summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t22/before/test.java
blob: 24b0b43cb5a25f03a08f5ae7ed41974dcc6c1fe0 (plain)
1
2
3
4
5
6
7
8
class Test {
    String f;
    void foo(String... s) {}

    void bar() {
      foo(f);
    }
}