summaryrefslogtreecommitdiffstats
path: root/tests/java5/suppressedWarnings/A1.aj
blob: 1770fe39f3a2eb25bf75f34638e144a5244e81f0 (plain)
1
2
3
4
5
6
import org.aspectj.lang.annotation.*;
public aspect A1 {

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