KTIJ-24768 Fix IllegalArgumentException in KtType.isPrimitiveBacked
This commit is contained in:
committed by
Space Team
parent
8d1cfe0017
commit
164cbc9968
+4
@@ -0,0 +1,4 @@
|
||||
public final class ImplicitArrayWithFlexibleParameterTypesKt /* ImplicitArrayWithFlexibleParameterTypesKt*/ {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static final java.lang.Integer[] getArrayOfFlexibleInts();// getArrayOfFlexibleInts()
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
// ImplicitArrayWithFlexibleParameterTypesKt
|
||||
// WITH_STDLIB
|
||||
// FILE: ImplicitArrayWithFlexibleParameterTypes.kt
|
||||
|
||||
fun getArrayOfFlexibleInts() /* : Array<Int!> */ = arrayOf(JavaClass.getJavaInt())
|
||||
|
||||
|
||||
// FILE: JavaClass.java
|
||||
|
||||
public class JavaClass {
|
||||
public static Integer getJavaInt() {
|
||||
return 10;
|
||||
}
|
||||
}
|
||||
|
||||
// FIR_COMPARISON
|
||||
Reference in New Issue
Block a user