FIR: don't call toString() inside string concatenations

This commit is contained in:
Mikhail Glukhikh
2021-04-22 14:11:41 +03:00
parent 7dcdbf283b
commit f278de8768
48 changed files with 125 additions and 306 deletions
@@ -65,7 +65,7 @@ fun testContinueDoWhile() {
when {
greater(arg0 = k, arg1 = 2) -> continue
}
s = s.plus(other = k.toString() + ";")
s = s.plus(other = k + ";")
// } while (less(arg0 = k, arg1 = 10))
}
when {