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

7 lines
163 B
Kotlin
Vendored

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