0285b26e40
KT-33604
11 lines
199 B
Kotlin
Vendored
11 lines
199 B
Kotlin
Vendored
package lib
|
|
|
|
fun inlineCapture(s: String): String {
|
|
return with(StringBuilder()) {
|
|
val o = object {
|
|
override fun toString() = s
|
|
}
|
|
append(o)
|
|
}.toString()
|
|
}
|