11a3482970
#KT-38632 Fixed
12 lines
210 B
Plaintext
Vendored
12 lines
210 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(): Int {
|
|
return listOf(1, 2, 3)
|
|
.asSequence()
|
|
.filter { it > 1 }
|
|
.map { it * 2 }
|
|
.toList()
|
|
.let {
|
|
it.binarySearch(1)
|
|
}
|
|
} |