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

9 lines
184 B
Kotlin
Vendored

// WITH_RUNTIME
import java.util.Arrays
fun test() {
val array = arrayOf(1, 2, 3)
val from = 1
val to = 4
val result = Arrays.<caret>binarySearch(array, from, to, 3)
}