summaryrefslogtreecommitdiffstats
path: root/ajdoc/testdata/pr119453/src/pack/A.aj
blob: 21517b07fa1895bf0581f3fbad322bdee42fb39b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package pack;

public aspect A {

	private int C.y = 3;

	declare warning : execution(* C.method()) : "warning..";
	
	/**
	 * blah
	 */
	public String C.m(){return "";};

	public C.new(String s){ this();};
	
	pointcut p() : execution(* *.*(..));
	
	before() : p() {
	}
	
}