Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/deepEqualsWithNullOther.kt
T

9 lines
177 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
import java.util.Arrays
fun test() {
val a = arrayOf(1, 2, 3)
val b: Array<*>? = null
val result = Arrays.<caret>deepEquals(a, b)
}