summaryrefslogtreecommitdiffstats
path: root/tests/features169/transparent/OneDeclareAt.java
blob: 3daa279d46d6c4ac0733def029cec6b258f15e97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.lang.annotation.*;

public class OneDeclareAt {
}

aspect X {
  declare @field: int OneDeclareAt.x: @Anno;

  private int OneDeclareAt.x;
}

@Retention(RetentionPolicy.RUNTIME)
@interface Anno {}