aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs160/pr166084/Simple.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs160/pr166084/Simple.java')
-rw-r--r--tests/bugs160/pr166084/Simple.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/bugs160/pr166084/Simple.java b/tests/bugs160/pr166084/Simple.java
deleted file mode 100644
index c5992b4ee..000000000
--- a/tests/bugs160/pr166084/Simple.java
+++ /dev/null
@@ -1,14 +0,0 @@
-public class Simple {
- public static void main(String []argv) {
- new Simple().m();
- }
-
- public void m() {
- int i = 1;
- System.out.println(i);
- }
-}
-
-aspect X {
- before(): call(* println(..)) {}
-}