1
0
Mirror von https://github.com/eclipse-aspectj/aspectj.git synchronisiert 2024-08-16 02:10:48 +02:00
org.aspectj/tests/bugs169/pr291206/One.java

18 Zeilen
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 {}