diff options
-rw-r--r-- | tests/bugs161/pr173978/Test.java | 7 | ||||
-rw-r--r-- | tests/bugs161/pr173978/TestAroundAspect.java | 6 |
2 files changed, 0 insertions, 13 deletions
diff --git a/tests/bugs161/pr173978/Test.java b/tests/bugs161/pr173978/Test.java deleted file mode 100644 index 459d3cd20..000000000 --- a/tests/bugs161/pr173978/Test.java +++ /dev/null @@ -1,7 +0,0 @@ -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 deleted file mode 100644 index 9a884dd63..000000000 --- a/tests/bugs161/pr173978/TestAroundAspect.java +++ /dev/null @@ -1,6 +0,0 @@ -public aspect TestAroundAspect{ - void around(): execution(void Test.sayHello(String)){ - proceed(); - } -} - |