blob: 351c70eeb6b904a0df20d0c9991c832100aecbdc (
plain)
1
2
3
4
5
6
7
8
9
10
|
package test.extender;
import test.*;
public aspect Extender2 {
declare parents: InterfaceProj1 extends java.io.Serializable;
// declare parents: test.ClassProj1 extends ClassProj2;
}
|