108dea5b46
So #KT-15476 Fixed
9 lines
216 B
Plaintext
Vendored
9 lines
216 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(list: List<Int>): List<Int> {
|
|
return list // comment1
|
|
.asSequence()
|
|
.filter { it > 1 } // comment2
|
|
.map { it * 2 }
|
|
.toList() // comment3
|
|
} |