diff options
author | aclement <aclement> | 2009-03-03 19:16:09 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-03-03 19:16:09 +0000 |
commit | f94920c35dbeab6b774f2dcfda3f3d8f9ee6124b (patch) | |
tree | f4bff9ae6eac61ad609675ed965d478d34a050d8 | |
parent | d561b934a8663072be4768ef3dd72736af1443ff (diff) | |
download | aspectj-f94920c35dbeab6b774f2dcfda3f3d8f9ee6124b.tar.gz aspectj-f94920c35dbeab6b774f2dcfda3f3d8f9ee6124b.zip |
moved to 164
-rw-r--r-- | tests/bugs162/pr209051/Bug.java | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/bugs162/pr209051/Bug.java b/tests/bugs162/pr209051/Bug.java deleted file mode 100644 index ac1bf7b8e..000000000 --- a/tests/bugs162/pr209051/Bug.java +++ /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) {} -} - |