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

6 lines
135 B
Kotlin
Vendored

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