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

9 lines
177 B
Plaintext
Vendored

private val b = true
// EXTRACTION_TARGET: property with initializer
fun foo(): String {
val x = "a${b}123"
val x = "aTRUE123"
val z = true
return "ab${b}def"
}