Files
kotlin-fork/idea/testData/refactoring/introduceVariable/stringTemplates/singleEntrySuffix.kt
T
2015-11-24 20:40:15 +03:00

6 lines
135 B
Kotlin
Vendored

fun foo(a: Int): String {
val x = "xdef$a"
val y = "${a}defx"
val z = "xddf$a"
return "abc<selection>def</selection>"
}