Files
kotlin/idea/testData/refactoring/extractFunction/stringTemplates/singleEntrySubstring.kt

7 lines
160 B
Kotlin
Vendored

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