aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr156962/WarnDeprecatedMethod.aj
blob: 54663d84927990250f1134750c579958158b07e4 (plain)
1
2
3
4
public aspect WarnDeprecatedMethod {
    public pointcut execDepr(): execution(@Deprecated * *(..));
    declare warning: execDepr(): "deprecated method";	
}