aboutsummaryrefslogtreecommitdiffstats
path: root/ajdoc/testdata/declareForms/DeclareAtConstructor.aj
blob: 1d43cac39277406c6f28c1a9bcbc921df8122b46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package foo;

@interface MyAnnotation {	
}

public aspect DeclareAtConstructor {

	declare @constructor : C.new(..) : @MyAnnotation;
	
}

class C {
	
	public C(String s) {		
	}
	
}