aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test3/CopyAnno.java
blob: cc4ac33cd0830ba43a6b971bc9021aeec067fc24 (plain)
1
2
3
4
5
6
7
8
9
10
package test3;

class CopyAnnoBase {
    int x = 3;
    @VisibleAnno public int getX() { return x; }
}

public class CopyAnno extends CopyAnnoBase {
    public int getX() { return super.getX(); }
}