summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/declare/atfield/RecursiveFields2.aj
blob: b695e081306616f82639af05de626f87e9deb429 (plain)
1
2
3
4
5
6
7
8
9
10
11
// check order of application - this should work
public aspect RecursiveFields2 {
  declare @field: @Colored * * : @Fruit("orange");
  declare @field: public int * : @Colored("blue");
}

aspect X {
  before(): set(@Fruit * *) {
    System.err.println("Fruit field access at "+thisJoinPoint);
  }
}