From 3808a3ed369ef86b5f55307fa30f1c80a7f44f0c Mon Sep 17 00:00:00 2001 From: aclement Date: Tue, 17 Jun 2008 20:27:53 +0000 Subject: [PATCH] 173978: testcode --- tests/bugs161/pr173978/Test.java | 7 +++++++ tests/bugs161/pr173978/TestAroundAspect.java | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 tests/bugs161/pr173978/Test.java create mode 100644 tests/bugs161/pr173978/TestAroundAspect.java 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(); + } +} + -- 2.39.5