JVM_IR: remove an assertion that triggers due to a frontend bug

This commit is contained in:
pyos
2019-10-18 19:00:01 +02:00
committed by Alexander Udalov
parent e5cc0eec9c
commit 0c3dfca6ee
7 changed files with 43 additions and 3 deletions
@@ -0,0 +1,10 @@
fun box(): String {
var s = "2"
var res = "Fail"
if (s == "1") {
false
} else if (s == "2") {
res = "OK"
}
return res
}