summaryrefslogtreecommitdiffstats
path: root/tests/bugs151/pr124808/TestAspect.java
blob: 446f444dee492d837ac826b0801941b4019a8218 (plain)
1
2
3
4
5
6
7
8
9
10
import java.util.*;

public privileged aspect TestAspect {

   pointcut gettingMemberCollection() : get(Set<Number+> *);

   after() : gettingMemberCollection() {
     System.err.println("GO Aspects!  "+thisJoinPoint);
   }
}