1 2 3 4 5 6 7 8 9 10 11 12 13 14
import org.aspectj.testing.Tester; // PR#286 aspect of abstract class public class AbstractAspectOf { } abstract aspect AbstractAspect /*of eachobject(instanceof(AbstractError))*/ { } class C { aspect InnerAspect { } }