5 lines
106 B
Kotlin
Vendored
5 lines
106 B
Kotlin
Vendored
// "Remove 'toString()' call" "true"
|
|
|
|
fun foo(s: String) = s
|
|
|
|
fun bar() = foo("a${"b".toString()<caret>}") |