Files
kotlin-fork/idea/testData/inspectionsLocal/replaceStringFormatWithLiteral/curlyBraces.kt
T
2020-05-27 02:38:39 +09:00

6 lines
129 B
Kotlin
Vendored

// WITH_RUNTIME
fun main() {
val id = "abc"
val date = "123"
val s = String.format(<caret>"%s_%s_%s", id, date, id)
}