Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
streams.kt
blob: 9ff78a10edc0086181f4dcae1c5073b89e097656 [
file
]
// FIR_IDENTICAL
// FULL_JDK
// STDLIB_JDK8
import
java
.
util
.*
import
kotlin
.
streams
.
toList
fun testStreams
(
list
:
ArrayList
<
String
>)
{
list
.
stream
().
toList
()
}