summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/aspectMembers/a/AnnotatedAspect07.aj
blob: aedaf596b11f176165ae6e455309a62cd927bf9b (plain)
1
2
3
4
5
6
7
8
9
10
11
package a;

@TypeAnnotation
public aspect AnnotatedAspect07 {
	
	// should just compile harmlessly
	
	@AnyAnnotation
	pointcut foo() : get(* *);
}