Files
kotlin/idea/testData/refactoring/extractFunction/stringTemplates/extractFalse.kt

7 lines
170 B
Kotlin
Vendored

// SUGGESTED_NAMES: b, getX
fun foo(param: Int): String {
val x = "xyfalsez"
val y = "xyFalsez"
val z = false
return "ab<selection>false</selection>def"
}