summaryrefslogtreecommitdiffstats
path: root/tests/features153/jdtlikehandleprovider/A9.aj
blob: 09f8eadae2317ffa37469928039c1792c3fee74c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package pkg;

public aspect A9 {
	
	public int C.x = 5;
	
	private void C.method() {
	}
	
	public String C.methodWithArgs(int i) {
		return "";
	}
}

class C {
}