[FIR] Support typealiases to java Repeatable
This commit is contained in:
committed by
Space Team
parent
2e8b177262
commit
d105ce8681
+13
@@ -0,0 +1,13 @@
|
||||
// FIR_IDENTICAL
|
||||
// FULL_JDK
|
||||
// !LANGUAGE: +RepeatableAnnotations
|
||||
|
||||
//import java.lang.annotation.*
|
||||
|
||||
typealias Rep = java.lang.annotation.Repeatable
|
||||
|
||||
<!REPEATABLE_CONTAINER_MUST_HAVE_VALUE_ARRAY_ERROR!>@Rep(RepeatableAnnotationContainer::class)<!>
|
||||
annotation class RepeatableAnnotation
|
||||
annotation class RepeatableAnnotationContainer
|
||||
|
||||
@RepeatableAnnotation class Annotated
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
package
|
||||
|
||||
@RepeatableAnnotation public final class Annotated {
|
||||
public constructor Annotated()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
@Rep /* = java.lang.annotation.Repeatable */(value = RepeatableAnnotationContainer::class) public final annotation class RepeatableAnnotation : kotlin.Annotation {
|
||||
public constructor RepeatableAnnotation()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
public final annotation class RepeatableAnnotationContainer : kotlin.Annotation {
|
||||
public constructor RepeatableAnnotationContainer()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
public typealias Rep = java.lang.annotation.Repeatable
|
||||
|
||||
Reference in New Issue
Block a user