// "@Pointcut with an empty string"importorg.aspectj.lang.annotation.*;@AspectclassFoo{@Pointcut("call(* java.util.List.*(..))")// must qualifyvoidlistOperation(){}@Pointcut("")// should compile, I think - just matches no joinPointsvoidanyUtilityCall(){}}