FIR DFA: correct exit node retrieval when a safe call is the last expression

^KT-44699 Fixed
This commit is contained in:
Jinseong Jeon
2021-02-04 12:08:25 -08:00
committed by Dmitriy Novozhilov
parent 266432a482
commit 83e3201677
6 changed files with 14 additions and 29 deletions
@@ -11,7 +11,7 @@ FILE: coercionToUnitWithEarlyReturn.kt
public final fun foo(x: R|() -> kotlin/Unit|): R|kotlin/Unit| {
}
public final fun main(x: R|A?|): R|kotlin/Unit| {
lval lambda: R|() -> kotlin/Unit| = l@fun <anonymous>(): R|kotlin/Unit| {
lval lambda: R|() -> kotlin/Unit?| = l@fun <anonymous>(): R|kotlin/Unit?| {
when () {
==(R|<local>/x|?.{ $subj$.R|kotlin/Any.hashCode|() }, Int(0)) -> {
^@l Unit
@@ -21,5 +21,5 @@ FILE: coercionToUnitWithEarlyReturn.kt
^ R|<local>/x|?.{ $subj$.R|/A.unit|() }
}
R|/foo|(R|<local>/lambda|)
<Inapplicable(INAPPLICABLE): /foo>#(R|<local>/lambda|)
}
@@ -15,5 +15,5 @@ fun main(x: A?) {
}
// lambda has a type (() -> Unit?)
foo(lambda)
<!INAPPLICABLE_CANDIDATE{LT}!><!INAPPLICABLE_CANDIDATE{PSI}!>foo<!>(lambda)<!>
}