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