summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t66/after/test.java
blob: 56608039cf5e61998efa41bb88a3832ea01c99a0 (plain)
1
2
3
4
5
6
7
8
9
class Test {
    void foo(int i) {
      int p = i;
    }

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