Files
kotlin-fork/idea/testData/refactoring/introduceProperty/stringTemplates/singleEntrySuffix.kt
T

9 lines
188 B
Kotlin
Vendored

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