blob: 366d1faf1e4f292415512cda98a8aa304c37ed64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import java.lang.annotation.*;
aspect X {
declare warning: @Anno *: "Nothing should be annotated Anno!";
}
@Anno
class C {
}
class D {
}
@Retention(RetentionPolicy.RUNTIME)
@interface Anno {}
|