aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr154054/changes
diff options
context:
space:
mode:
authoraclement <aclement>2006-09-22 10:49:37 +0000
committeraclement <aclement>2006-09-22 10:49:37 +0000
commit98a5d925536b291ca760ca510a2e06b7e3cff13e (patch)
treed349cbb016ddc7b55dae0c6eace09803ca799f4f /tests/bugs153/pr154054/changes
parent1138f942d5c2367ef8a6abb4d30e724730bc8f79 (diff)
downloadaspectj-98a5d925536b291ca760ca510a2e06b7e3cff13e.tar.gz
aspectj-98a5d925536b291ca760ca510a2e06b7e3cff13e.zip
154054 testcode and fix: noticing changes in around advice and forcing full builds
Diffstat (limited to 'tests/bugs153/pr154054/changes')
-rw-r--r--tests/bugs153/pr154054/changes/MyAspect.20.aj10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs153/pr154054/changes/MyAspect.20.aj b/tests/bugs153/pr154054/changes/MyAspect.20.aj
new file mode 100644
index 000000000..d2a7a7155
--- /dev/null
+++ b/tests/bugs153/pr154054/changes/MyAspect.20.aj
@@ -0,0 +1,10 @@
+public aspect MyAspect {
+
+ pointcut mypointcut(): execution(* getX()) && !within(MyAspect);
+
+ int around(): mypointcut() {
+ int w = proceed() + 4;
+ return w;
+ }
+
+}