Fix false positive for if-else

This commit is contained in:
kenji tomita
2018-08-18 14:55:35 +09:00
committed by Mikhail Glukhikh
parent 0099b7b3b1
commit e59427edab
3 changed files with 15 additions and 0 deletions
@@ -0,0 +1,7 @@
// PROBLEM: none
// WITH_RUNTIME
fun test() {
if (true) println("hello") else<caret>;
println("hi")
}