aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr153572/AnnotationMatcher.aj
blob: f7a7f4d107bcd2a17d6b11c533d90de574006915 (plain)
1
2
3
4
5
6
7
8
public aspect AnnotationMatcher {
	
	after() returning : initialization(*.new(..)) && @this(Configurable) {
		System.out.println("annotated type initialized");
	}
	
	
}