Files
kotlin-fork/idea/testData/formatter/callChain/KT15099.kt
T
2018-02-09 10:48:48 +01:00

8 lines
127 B
Kotlin
Vendored

fun test() {
Single.just(Object())
.map {
it
}.map {
it // The code unexpectedly shifts to the left
}
}