K2 Java: fix 'value' annotation constructor parameter type to Array<out>

#KT-61100 Fixed
This commit is contained in:
Mikhail Glukhikh
2023-10-11 14:55:54 +02:00
committed by Space Team
parent 8e4a6759a4
commit af58b30e5f
7 changed files with 33 additions and 21 deletions
@@ -16,7 +16,7 @@ public abstract interface AnnotationInParam : R|kotlin/Any| {
}
public final annotation class MyAnnotation2 : R|kotlin/Annotation| {
public constructor(vararg value: R|kotlin/Array<kotlin/String>|): R|test/AnnotationInParam.MyAnnotation2|
public constructor(vararg value: R|kotlin/Array<out kotlin/String>|): R|test/AnnotationInParam.MyAnnotation2|
}
public final annotation class MyAnnotation3 : R|kotlin/Annotation| {