diff options
Diffstat (limited to 'tests/bugs154/pr209019/case1/AbstractDurationMethod.java')
-rw-r--r-- | tests/bugs154/pr209019/case1/AbstractDurationMethod.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs154/pr209019/case1/AbstractDurationMethod.java b/tests/bugs154/pr209019/case1/AbstractDurationMethod.java new file mode 100644 index 000000000..ff397ca5b --- /dev/null +++ b/tests/bugs154/pr209019/case1/AbstractDurationMethod.java @@ -0,0 +1,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; + } +} |