aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs169/pr318241/Two.aj
blob: a4c106cb9798ee2a0c4a750e6ac5b8bc75d39ea5 (plain)
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 {}