1 2 3 4 5 6
import org.aspectj.lang.annotation.*; public aspect A1 { before(): execution(* foo(..)) { // wont match } }