11a3482970
#KT-38632 Fixed
13 lines
228 B
Plaintext
Vendored
13 lines
228 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(foo: Foo): List<Int> {
|
|
return foo.getList()
|
|
.asSequence()
|
|
.filter { it > 1 }
|
|
.map { it * 2 }
|
|
.toList()
|
|
}
|
|
|
|
class Foo {
|
|
fun getList(): List<Int> = listOf(1, 2, 3)
|
|
} |