summaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr209019/case2/AbstractDurationMethod.java
diff options
context:
space:
mode:
authoraclement <aclement>2007-11-07 14:55:17 +0000
committeraclement <aclement>2007-11-07 14:55:17 +0000
commitb039791377f005005601d0d303150c5a376f1827 (patch)
tree966ed11fa54466e4ce80cee6bc25fbc839d590e0 /tests/bugs154/pr209019/case2/AbstractDurationMethod.java
parent08904ab5e37abd95a50875f36f4ed5ed757b0cc0 (diff)
downloadaspectj-b039791377f005005601d0d303150c5a376f1827.tar.gz
aspectj-b039791377f005005601d0d303150c5a376f1827.zip
testcode for 169432 and 209019
Diffstat (limited to 'tests/bugs154/pr209019/case2/AbstractDurationMethod.java')
-rw-r--r--tests/bugs154/pr209019/case2/AbstractDurationMethod.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs154/pr209019/case2/AbstractDurationMethod.java b/tests/bugs154/pr209019/case2/AbstractDurationMethod.java
new file mode 100644
index 000000000..ff397ca5b
--- /dev/null
+++ b/tests/bugs154/pr209019/case2/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;
+ }
+}