[IR] update testdata: print whole string concatenation at one line
This commit is contained in:
committed by
teamcityserver
parent
91c9d9d25c
commit
21da2b0350
@@ -18,10 +18,7 @@ data class Test1<T : Any?> {
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "Test1(" +
|
||||
"x=" +
|
||||
<this>.#x +
|
||||
")"
|
||||
return "Test1(" + "x=" + <this>.#x + ")"
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
@@ -67,10 +64,7 @@ data class Test2<T : Number> {
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "Test2(" +
|
||||
"x=" +
|
||||
<this>.#x +
|
||||
")"
|
||||
return "Test2(" + "x=" + <this>.#x + ")"
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
@@ -113,10 +107,7 @@ data class Test3<T : Any?> {
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "Test3(" +
|
||||
"x=" +
|
||||
<this>.#x +
|
||||
")"
|
||||
return "Test3(" + "x=" + <this>.#x + ")"
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
@@ -159,10 +150,7 @@ data class Test4 {
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "Test4(" +
|
||||
"x=" +
|
||||
<this>.#x +
|
||||
")"
|
||||
return "Test4(" + "x=" + <this>.#x + ")"
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
|
||||
Reference in New Issue
Block a user