summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t65/after/test.java
blob: 3532ce557f8c23da980a2f95279b91df8a074503 (plain)
1
2
3
4
5
6
7
8
9
class Test {
    void foo(String i) {
      String p = i;
    }

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