summaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr209051/Bug2.java
blob: b37a3478b7e65fff91ea69c63ee8fff3e73e589a (plain)
1
2
3
4
5
6
7
8
9
10
import org.aspectj.lang.annotation.*;

public aspect Bug2 {
  pointcut pc(int i): args(i) && if(i<0);

  before(): pc(*) {
  }

  public void trigger(int i) {}
}