5bc5722051
#KT-5990 Fixed #KT-7127 Fixed #KT-10370 Fixed
14 lines
239 B
Kotlin
Vendored
14 lines
239 B
Kotlin
Vendored
package foo
|
|
|
|
fun mainJdk8(x: List<String>, j6List: Jdk6List<String>) {
|
|
x.stream().filter { it.length > 0 }
|
|
|
|
j6List.size
|
|
// TODO: stream should be available
|
|
j6List.stream()
|
|
|
|
buildList().stream()
|
|
|
|
myFile().toPath()
|
|
}
|