aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/subaspects/parent/ParentMethodCE.java
blob: 0f25fe2d50bf608dc2ca5a342cb86b0dc1971e46 (plain)
1
2
3
4
5
6
7
8
9
10
package parent;

import org.aspectj.testing.*;

/** @testcase PR#647 concrete aspect unable to access abstract package-private method in parent for overriding */
public abstract class ParentMethodCE {
    /** cannot be implemented outside this class */
    abstract void defineMethod();
}