[IR] update testdata: print whole string concatenation at one line

This commit is contained in:
Zalim Bashorov
2020-11-10 03:15:39 +03:00
committed by teamcityserver
parent 91c9d9d25c
commit 21da2b0350
19 changed files with 31 additions and 161 deletions
@@ -26,13 +26,7 @@ data class Test<T : Any?> {
}
override fun toString(): String {
return "Test(" +
"x=" +
<this>.#x +
", " +
"y=" +
<this>.#y +
")"
return "Test(" + "x=" + <this>.#x + ", " + "y=" + <this>.#y + ")"
}
override fun hashCode(): Int {