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

6 lines
132 B
Kotlin
Vendored

fun foo(a: Int): String {
val x = "xcd$a"
val y = "${a}cdx"
val z = "xcf$a"
return "ab<selection>cd</selection>ef"
}