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

7 lines
168 B
Kotlin
Vendored

// SUGGESTED_NAMES: b, getX
fun foo(param: Int): String {
val x = "atrue123"
val x = "aTRUE123"
val z = true
return "ab<selection>true</selection>def"
}