aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test3/SubValue.java
blob: 33e1c8e540f130051e51c8508e8a090fe4b70a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test3;

class SuperValue {
    int i;
}

public class SubValue extends SuperValue {
    public SubValue after(SuperValue ret, SuperValue sup, SuperValue sup2) {
       return null;
    }

    public SubValue after(SuperValue ret, SubValue sup, SuperValue sub) {
       return new SubValue();
    }
}