aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/DeclareInterfaceImplementsInterface.java
blob: c8b21ddd8ea2a2fbe84e2b32e1cfcd57175396bb (plain)
1
2
3
4
5
6
7
8
9
10
11
/** @testcase PR853 declare interface implements interface CE */

interface I {}

interface I2 {}

aspect A {
    declare parents:  I implements I2;  // CE 10
}