blob: 3b603f9ee6224562b21faacabef1f12df807ecb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import java.lang.annotation.*;
public class OneDefaultAnnotated {
}
aspect X {
@Anno
int OneDefaultAnnotated.x;
}
@Retention(RetentionPolicy.RUNTIME)
@interface Anno {}
|