]> source.dussan.org Git - aspectj.git/commitdiff
moved to 164
authoraclement <aclement>
Tue, 3 Mar 2009 19:16:09 +0000 (19:16 +0000)
committeraclement <aclement>
Tue, 3 Mar 2009 19:16:09 +0000 (19:16 +0000)
tests/bugs162/pr209051/Bug.java [deleted file]

diff --git a/tests/bugs162/pr209051/Bug.java b/tests/bugs162/pr209051/Bug.java
deleted file mode 100644 (file)
index ac1bf7b..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-import org.aspectj.lang.annotation.*;
-
-public @Aspect class Bug {
-       @Pointcut("args(i) && if() && within(Foo)")
-       public static boolean pc(int i) {
-               return i < 0;
-       }
-       
-       @Before("pc(*)")
-       public void advice() { System.out.println("advice running");}
-
-  public static void main(String []argv) {
-    new Foo().trigger(-1);
-    new Foo().trigger(+1);
-  }
-}
-
-class Foo {
-  public void trigger(int i) {}
-}
-