summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t16/after/test.java
blob: 8c87396bcb3de897f597522c1ea4c3442501d67e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Test {
    B f;

    A bar() {
        return f.foo(f);
    }
}
class A {
    <T> T foo(T t) {
        return t;
    }
}

class B extends A {
}