mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-02 08:31:31 +00:00
Wrapped annotations test data so it will be processed by namespace comparator correctly.
This commit is contained in:
@@ -1,14 +1,16 @@
|
||||
package test;
|
||||
|
||||
import java.lang.String;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@interface MyAnnotation {
|
||||
String[] value();
|
||||
}
|
||||
public interface AnnotationWithArrayOfStringInParam {
|
||||
|
||||
@MyAnnotation({"a", "b", "c"})
|
||||
class A {
|
||||
|
||||
public @interface MyAnnotation {
|
||||
String[] value();
|
||||
}
|
||||
|
||||
@MyAnnotation({"a", "b", "c"})
|
||||
public class A {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user