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