We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86034dc commit e4ff250Copy full SHA for e4ff250
java/kotlin-extractor/src/main/kotlin/KotlinUsesExtractor.kt
@@ -649,9 +649,9 @@ open class KotlinUsesExtractor(
649
650
(s.isBoxedArray && s.arguments.isNotEmpty()) || s.isPrimitiveArray() -> {
651
652
- fun replaceComponentTypeWithAny(t: IrSimpleType, dimensions: Int): IrSimpleType =
+ fun replaceComponentTypeWithAny(t: IrSimpleType, dimensions: Int): IrType =
653
if (dimensions == 0)
654
- pluginContext.irBuiltIns.anyType as IrSimpleType
+ pluginContext.irBuiltIns.anyType
655
else
656
t.toBuilder().also { it.arguments = (it.arguments[0] as IrTypeProjection)
657
.let { oldArg ->
0 commit comments