e8cf0b5d4f
NB: does not pass in javac mode due to lack of JvmPackageName support
9 lines
148 B
Kotlin
Vendored
9 lines
148 B
Kotlin
Vendored
// FULL_JDK
|
|
// STDLIB_JDK8
|
|
|
|
import java.util.*
|
|
import kotlin.streams.toList
|
|
|
|
fun testStreams(list: ArrayList<String>) {
|
|
list.stream().toList()
|
|
} |