summaryrefslogtreecommitdiffstats
path: root/tests/bugs151/pr124803/TestAspect.java
blob: c22b8f96628242c12c245a042cad2f576a88cb23 (plain)
1
2
3
4
5
6
7
8
public privileged aspect TestAspect {
       pointcut TestInheritance(Test test) : target(test) && execution (* Generic1.*(..));

       after (Test test) : TestInheritance(test) {
               System.err.println("Aspects:"+thisJoinPoint);
       }
}