mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
Wrapped annotations test data so it will be processed by namespace comparator correctly.
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
package test;
|
||||
|
||||
@B(@A("test"))
|
||||
@interface A {
|
||||
String value();
|
||||
}
|
||||
public interface RecursiveAnnotation {
|
||||
|
||||
@B(@A("test"))
|
||||
@interface B {
|
||||
A value();
|
||||
@B(@A("test"))
|
||||
public @interface A {
|
||||
String value();
|
||||
}
|
||||
|
||||
@B(@A("test"))
|
||||
public @interface B {
|
||||
A value();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user