summaryrefslogtreecommitdiffstats
path: root/tests/new/DeclareClassImplementsClass.java
blob: f10c574cb21186f9065bf8b970818d5f304d6834 (plain)
1
2
3
4
5
6
7
8
9
10
11
/** @testcase PR853 declare class implements class CE */

class C {}

class B {}

aspect A {
    declare parents:  C implements B;  // CE 10
}