summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t27/before/test.java
blob: a18da122856d13c0f09ce4f5233f2083ecd7a881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Test {
    C f;
    void foo(C c) {}
}

class B extends Test {
    void foo(C c) {
      f = c;
    }
}

class C {}
class D extends C{}