diff options
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(); + } +} + |