aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr280380/inc2/src/g/AnAspect.aj
blob: aea980cbf0a4d23506de3035ce7f8585bf001f63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package g;

import f.AClass;

public aspect AnAspect {
	public int f.AClass.xxxx;
	
	public int AClass.y() {
		return 0;
	}
	
	AClass.new() {
		this();
	}
}