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

public class OnePrivateAnnotated {
}

aspect X {
  @Anno
  private int OnePrivateAnnotated.x;
}

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