Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
streams
/
basic.kt
blob: 89e77991f9cafd6550b7d134cf300558e59ef047 [
file
]
// RUN_PIPELINE_TILL: BACKEND
// FULL_JDK
// WITH_STDLIB
// STDLIB_JDK8
import
java
.
util
.*
import
kotlin
.
streams
.
toList
fun testStreams
(
list
:
ArrayList
<
String
>)
{
list
.
stream
().
toList
()
}
/* GENERATED_FIR_TAGS: flexibleType, functionDeclaration */