[IR] update testdata: print whole string concatenation at one line
This commit is contained in:
committed by
teamcityserver
parent
91c9d9d25c
commit
21da2b0350
+2
-8
@@ -21,10 +21,7 @@ data class A {
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "A(" +
|
||||
"runA=" +
|
||||
<this>.#runA +
|
||||
")"
|
||||
return "A(" + "runA=" + <this>.#runA + ")"
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
@@ -78,10 +75,7 @@ data class B {
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "B(" +
|
||||
"x=" +
|
||||
<this>.#x +
|
||||
")"
|
||||
return "B(" + "x=" + <this>.#x + ")"
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
|
||||
Reference in New Issue
Block a user