aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr209019/case3/AbstractDurationMethod.java
blob: ff397ca5b83ae640da98ff88d7e9e0f5a1c5356d (plain)
1
2
3
4
5
6
7
8
9
10
11
package c.d;

public abstract aspect AbstractDurationMethod {
   public abstract pointcut methods();

   Object around(): methods() {
       Object o = proceed();
       System.out.println("Proceeded at joinpoint "+thisJoinPoint);
       return o;
   }
}