[FIR] Fix generic sam conversion in call completion

#KT-60903 Fixed
This commit is contained in:
Kirill Rakhman
2023-08-15 19:04:47 +02:00
committed by Space Team
parent 3ecadf1af7
commit 43180597fe
16 changed files with 119 additions and 14 deletions
@@ -0,0 +1,17 @@
fun main() {
Observable.of(1, 2)
.apply({ observable ->
Observable { subscriber ->
(observable).subscribe(object : Observer<Int> {
override fun next(value: Int) {
subscriber.next(value * 2)
}
})
}
})
.subscribe(object : Subscriber<Int>() {
override fun next(value: Int) {
}
})
}