org.aspectj/tests/bugs169/pr291206/One.java

18 lines
205 B
Java

import java.lang.annotation.*;
aspect X {
declare warning: @Anno *: "Nothing should be annotated Anno!";
}
@Anno
class C {
}
class D {
}
@Retention(RetentionPolicy.RUNTIME)
@interface Anno {}