diff options
author | aclement <aclement> | 2008-06-17 20:27:53 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-06-17 20:27:53 +0000 |
commit | 3808a3ed369ef86b5f55307fa30f1c80a7f44f0c (patch) | |
tree | 105131bf4e6771a80fec996b3904f458e2f45afc /tests | |
parent | 0f01399c3fd0a593eebe6ce12fbb22f238e25d52 (diff) | |
download | aspectj-3808a3ed369ef86b5f55307fa30f1c80a7f44f0c.tar.gz aspectj-3808a3ed369ef86b5f55307fa30f1c80a7f44f0c.zip |
173978: testcode
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs161/pr173978/Test.java | 7 | ||||
-rw-r--r-- | tests/bugs161/pr173978/TestAroundAspect.java | 6 |
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs161/pr173978/Test.java b/tests/bugs161/pr173978/Test.java new file mode 100644 index 000000000..459d3cd20 --- /dev/null +++ b/tests/bugs161/pr173978/Test.java @@ -0,0 +1,7 @@ +public class Test{ + public void sayHello(String message){ + System.out.println(message); + } +} + + diff --git a/tests/bugs161/pr173978/TestAroundAspect.java b/tests/bugs161/pr173978/TestAroundAspect.java new file mode 100644 index 000000000..9a884dd63 --- /dev/null +++ b/tests/bugs161/pr173978/TestAroundAspect.java @@ -0,0 +1,6 @@ +public aspect TestAroundAspect{ + void around(): execution(void Test.sayHello(String)){ + proceed(); + } +} + |