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