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

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