[FIR] Fix data-flow after while loops
This commit is contained in:
committed by
Mikhail Glukhikh
parent
91b432b4a1
commit
645602b675
+2
-2
@@ -151,7 +151,7 @@ fun test() {
|
||||
out2?.println();
|
||||
out2.<!INAPPLICABLE_CANDIDATE!>println<!>();
|
||||
}
|
||||
out2.<!INAPPLICABLE_CANDIDATE!>println<!>()
|
||||
out2.println()
|
||||
|
||||
}
|
||||
|
||||
@@ -228,7 +228,7 @@ fun f6(s : String?) {
|
||||
do {
|
||||
s?.get(0)
|
||||
} while (s == null)
|
||||
s.<!INAPPLICABLE_CANDIDATE!>get<!>(0)
|
||||
s.get(0)
|
||||
}
|
||||
|
||||
fun f7(s : String?, t : String?) {
|
||||
|
||||
Reference in New Issue
Block a user