[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 Some<T : Any?> {
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "Some(" +
|
||||
"value=" +
|
||||
<this>.#value +
|
||||
")"
|
||||
return "Some(" + "value=" + <this>.#value + ")"
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
|
||||
@@ -53,10 +53,7 @@ data class DataClass : Derived, Delegate {
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "DataClass(" +
|
||||
"delegate=" +
|
||||
<this>.#delegate +
|
||||
")"
|
||||
return "DataClass(" + "delegate=" + <this>.#delegate + ")"
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
|
||||
Reference in New Issue
Block a user