aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR133532/inc1/pkg/A.aj
blob: 37723778e787c32dfa457ae313531c293e904b35 (plain)
1
2
3
4
5
6
7
8
9
10
package pkg;

public privileged aspect A {

	public static int AbstractClass.F_PRIVILEGED = 0x8000;

	before() : execution(int AbstractClass.getModifiers()) {
		int i = AbstractClass.F_PRIVILEGED;
	}
}