summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/AnnotationAspect03.aj
blob: 0d67221e9b4ae334180097cfcc9cf3cb8b9b8090 (plain)
1
2
3
4
5
6
7
public aspect AnnotationAspect03 {
    
    declare warning : execution(* *.*(..)) && @annotation(SimpleAnnotation)
                    : "@annotation matched here";
    
    
}