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

public privileged aspect A {

	public static int F_PRIVILEGED = 0x8000;
	
	before() : execution(int AbstractClass.getModifiers()) {
		int i = F_PRIVILEGED;
	}
}