aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs163
diff options
context:
space:
mode:
authoraclement <aclement>2008-10-30 15:43:42 +0000
committeraclement <aclement>2008-10-30 15:43:42 +0000
commit19e1e92ad7a75f9f00c4a31ce7db98527f2c0c62 (patch)
tree2509b1f2b133d764d28477cf36e0b01000059661 /tests/bugs163
parentaa557a28af6ccb3bc0aa427665d5ec615d61d546 (diff)
downloadaspectj-19e1e92ad7a75f9f00c4a31ce7db98527f2c0c62.tar.gz
aspectj-19e1e92ad7a75f9f00c4a31ce7db98527f2c0c62.zip
173978: test and fix: local var table for method-execution and around advice
Diffstat (limited to 'tests/bugs163')
-rw-r--r--tests/bugs163/pr173978/Test.java7
-rw-r--r--tests/bugs163/pr173978/TestAroundAspect.java6
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs163/pr173978/Test.java b/tests/bugs163/pr173978/Test.java
new file mode 100644
index 000000000..459d3cd20
--- /dev/null
+++ b/tests/bugs163/pr173978/Test.java
@@ -0,0 +1,7 @@
+public class Test{
+ public void sayHello(String message){
+ System.out.println(message);
+ }
+}
+
+
diff --git a/tests/bugs163/pr173978/TestAroundAspect.java b/tests/bugs163/pr173978/TestAroundAspect.java
new file mode 100644
index 000000000..9a884dd63
--- /dev/null
+++ b/tests/bugs163/pr173978/TestAroundAspect.java
@@ -0,0 +1,6 @@
+public aspect TestAroundAspect{
+ void around(): execution(void Test.sayHello(String)){
+ proceed();
+ }
+}
+