e51d25fb60
#KT-51907
11 lines
180 B
Kotlin
Vendored
11 lines
180 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// FULL_JDK
|
|
// WITH_STDLIB
|
|
// STDLIB_JDK8
|
|
|
|
import java.util.*
|
|
import kotlin.streams.toList
|
|
|
|
fun testStreams(list: ArrayList<String>) {
|
|
list.stream().toList()
|
|
} |