summaryrefslogtreecommitdiffstats
path: root/tests/errors/AbstractAspectOf.java
blob: 85cb14f99fcbe187522a88189ce29aa5b258381f (plain)
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 {
    }
}