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

11 lines
188 B
Plaintext
Vendored

// EXTRACTION_TARGET: property with initializer
val a = 1
private val s = "cd"
fun foo(): String {
val x = "x$s$a"
val y = "${a}${s}x"
val z = "xcf$a"
return "ab${s}ef"
}