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

class C {}
class D extends C{}