6b2e58cc0b
#KT-26248 Fixed
6 lines
160 B
Kotlin
Vendored
6 lines
160 B
Kotlin
Vendored
fun main() {
|
|
val first = listOf("hello")
|
|
val second = listOf("hello", "world")
|
|
val result = second.any(<caret>first::contains)
|
|
println(result)
|
|
} |