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
@@ -4,7 +4,7 @@ public abstract interface EmptyArrayInParam : R|kotlin/Any| {
}
public final annotation class MyAnnotation : R|kotlin/Annotation| {
public constructor(vararg value: R|kotlin/Array<kotlin/String>|): R|test/EmptyArrayInParam.MyAnnotation|
public constructor(vararg value: R|kotlin/Array<out kotlin/String>|): R|test/EmptyArrayInParam.MyAnnotation|
}
}