blob: 9fcda9e5213642e98045a6b598761cb61307b5cc (
plain)
1
2
3
4
5
6
7
8
9
10
|
package test.extender;
import test.*;
public aspect Extender3 {
declare parents: InterfaceProj1 extends InterfaceProj2;
declare parents: test.ClassProj1 extends ClassProj2;
}
|