1 2 3 4 5 6 7 8 9 10
import java.lang.annotation.*; public aspect Two { declare parents: @Foo * implements II; } interface II {} @Retention(RetentionPolicy.RUNTIME) @interface Foo {}