1 2 3 4 5 6 7 8 9
public aspect A3 { pointcut m1(): call(* *print*(..)); before(): m1() { System.err.println("Calling print"); } }