Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/deepEquals.kt
T
2019-07-10 14:09:35 +03:00

8 lines
161 B
Kotlin
Vendored

// WITH_RUNTIME
import java.util.Arrays
fun test() {
val a = arrayOf(1, 2, 3)
val b = arrayOf(1, 2, 3)
val result = Arrays.<caret>deepEquals(a, b)
}