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

import f.AClass;
import f.*;

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