1 2 3 4 5 6 7 8 9
// "@Pointcut with wrong number of args" import org.aspectj.lang.annotation.*; @Aspect class A{ @Pointcut("call(* *.*(..))") void someCall(int x) {} }