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

9 lines
173 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>equals(a, b)
}