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