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

7 lines
180 B
Kotlin
Vendored

// EXTRACTION_TARGET: property with initializer
fun foo(): String {
val x = "xyfalsez"
val y = "xyFalsez"
val z = false
return "ab<selection>false</selection>def"
}