[FIR] Fix data-flow after while loops

This commit is contained in:
simon.ogorodnik
2020-01-31 15:20:19 +03:00
committed by Mikhail Glukhikh
parent 91b432b4a1
commit 645602b675
15 changed files with 34 additions and 19 deletions
@@ -127,12 +127,12 @@ fun f13(a : A?) {
fun f14(a : A?) {
while (!(a is B)) {
}
a.<!UNRESOLVED_REFERENCE!>bar<!>()
a.bar()
}
fun f15(a : A?) {
do {
} while (!(a is B))
a.<!UNRESOLVED_REFERENCE!>bar<!>()
a.bar()
}
fun getStringLength(obj : Any) : Char? {