summaryrefslogtreecommitdiffstats
path: root/tests/java5/suppressedWarnings/A2.aj
blob: c56dbf02d0761b8bc31279ab5f9be8c12f0be029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.aspectj.lang.annotation.*;
public aspect A2 {

  before(): execution(* foo(..)) { // wont match
  }

  @SuppressAjWarnings
  before(): execution(* foo(..)) { // wont match - but suppressed
  }
  @SuppressAjWarnings("Bananas") // this wont prevent the lint advice not match warning
  before(): execution(* foo(..)) { // wont match
  }
}