[IR] update testdata: print else -> ...

This commit is contained in:
Zalim Bashorov
2020-11-11 16:31:49 +03:00
committed by teamcityserver
parent 14dabed85a
commit 2dbd784a6a
66 changed files with 221 additions and 221 deletions
@@ -1,14 +1,14 @@
fun test1(b: Boolean) {
when {
b -> return Unit
true -> false
else -> false
} /*~> Unit */
}
fun test2(b: Boolean) {
when {
b -> true
true -> return Unit
else -> return Unit
} /*~> Unit */
}