Browse Source

moved to 164

tags/pre268419
aclement 15 years ago
parent
commit
f94920c35d
1 changed files with 0 additions and 21 deletions
  1. 0
    21
      tests/bugs162/pr209051/Bug.java

+ 0
- 21
tests/bugs162/pr209051/Bug.java View File

@@ -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) {}
}


Loading…
Cancel
Save