1 2 3 4 5 6
abstract aspect A { abstract pointcut p(); before(): p() { System.err.println("advice"); } }