diff options
author | aclement <aclement> | 2008-10-30 15:43:42 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-10-30 15:43:42 +0000 |
commit | 19e1e92ad7a75f9f00c4a31ce7db98527f2c0c62 (patch) | |
tree | 2509b1f2b133d764d28477cf36e0b01000059661 /tests/bugs163 | |
parent | aa557a28af6ccb3bc0aa427665d5ec615d61d546 (diff) | |
download | aspectj-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.java | 7 | ||||
-rw-r--r-- | tests/bugs163/pr173978/TestAroundAspect.java | 6 |
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(); + } +} + |