summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t24/after/test.java
blob: 6e0abdb55348073a43f625738bca16f5329d5519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class Test {
    D f;
    C foo() {
       return null;
    }
}
class B extends Test {
    C foo() {
        return f;
    }
}

class C {}
class D extends C{}