summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/thisOrtarget/DeclareEoW.java
blob: 4b7252fef1a7fd722492f5eaffad60deb98278dd (plain)
1
2
3
4
5
6
7
public aspect DeclareEoW {
	
	declare warning : @this(MyAnnotation) : "should give compilation error";
	
	declare error : @target(MyAnnotation) : "should give compilation error";
	
}