[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
@@ -2,9 +2,9 @@ fun testD(x: Comparable<Double>, y: Comparable<Double>): Boolean {
return when {
when {
x is Double -> y is Double
true -> false
else -> false
} -> less(arg0 = x /*as Double */, arg1 = y /*as Double */)
true -> false
else -> false
}
}
@@ -12,9 +12,9 @@ fun testF(x: Comparable<Float>, y: Comparable<Float>): Boolean {
return when {
when {
x is Float -> y is Float
true -> false
else -> false
} -> less(arg0 = x /*as Float */, arg1 = y /*as Float */)
true -> false
else -> false
}
}