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

9 lines
188 B
Kotlin
Vendored

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