summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t26/after/test.java
blob: ee47caa114647f5e90fca8e3f63cfc1e324996e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Test {
    D f;
    void foo(D c) {
      f = c;
    }
}

class B extends Test {
    void foo(D c) {

    }
}

class C {}
class D extends C{}