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

6 lines
102 B
Plaintext
Vendored

// WITH_RUNTIME
fun main() {
val id = "abc"
val date = "123"
val s = "${id}_${date}_$id"
}