aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/testproxy/sub/TargetSuper.java
blob: 0e40cded66b1b40558881902f430373faef0cc51 (plain)
1
2
3
4
5
6
7
package testproxy.sub;

public class TargetSuper {
    private int poi() { return 1; }
    int poi2() { return 2; }
    public int poi3() { return 3; }
}