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

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