Files
kotlin-fork/idea/testData/inspectionsLocal/replaceToStringWithStringTemplate/stringTemplate.kt
T

6 lines
110 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
fun test(): String {
val x = 1
return "Foo: ${x.<caret>toString()}"
}