mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-15 15:51:07 +00:00
14 lines
185 B
Java
14 lines
185 B
Java
package test;
|
|
|
|
public interface RecursiveAnnotation2 {
|
|
|
|
public @interface A {
|
|
B value();
|
|
}
|
|
|
|
@A(@B("test"))
|
|
public @interface B {
|
|
String value();
|
|
}
|
|
}
|