summaryrefslogtreecommitdiffstats
path: root/tests/new/packageAccessPR556/base2/p/C2.java
blob: a16dd1fe794aaa6635a77f1e3d7f7b4e9301a870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package p;

aspect A2 {
    private static int privateOne = 1;
    static int defaultOne = 1;
    protected static int protectedOne = 1;
    public static int publicOne = 1;
    pointcut p() : within (p..*) ;
}

class C2 {
    private static int privateOne = 1;
    static int defaultOne = 1;
    protected static int protectedOne = 1;
    public static int publicOne = 1;
    pointcut p() : within (p..*) ;
}