Add test for kotlin.streams function usage in Kotlin code

NB: does not pass in javac mode due to lack of JvmPackageName support
This commit is contained in:
Mikhail Glukhikh
2019-09-30 13:24:39 +03:00
parent f6ff580852
commit e8cf0b5d4f
6 changed files with 32 additions and 4 deletions
@@ -0,0 +1,9 @@
// FULL_JDK
// STDLIB_JDK8
import java.util.*
import kotlin.streams.toList
fun testStreams(list: ArrayList<String>) {
list.stream().toList()
}