FIR2IR: introduce implicit casts for extension receivers

This commit is contained in:
Jinseong Jeon
2020-12-10 22:16:31 -08:00
committed by TeamCityServer
parent 6e9ac6b333
commit f7ade2b0b8
9 changed files with 24 additions and 12 deletions
@@ -9,5 +9,5 @@ private operator fun J.component2(): Int {
fun test() {
val <destruct>: J? = j()
val a: Int = <destruct>.component1()
val b: Int = <destruct>.component2()
val b: Int = <destruct> /*!! J */.component2()
}