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

11 lines
179 B
Plaintext
Vendored

// EXTRACTION_TARGET: property with initializer
val a = 1
private val s = "abc$a"
fun foo(): String {
val x = s
val y = s
val z = "abc{$a}def"
return s + "def"
}