8 lines
127 B
Kotlin
Vendored
8 lines
127 B
Kotlin
Vendored
fun test() {
|
|
Single.just(Object())
|
|
.map {
|
|
it
|
|
}.map {
|
|
it // The code unexpectedly shifts to the left
|
|
}
|
|
} |