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

18 líneas
205 B
Java
Original Vista normal Histórico

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