Files
kotlin-fork/idea/testData/refactoring/introduceParameter/stringTemplates/fullEntryWithSimpleName.kt
T

6 lines
132 B
Kotlin
Vendored

fun foo(a: Int): String {
val x = "-$a"
val y = "x${a}y"
val z = "x$ay"
return "abc<selection>${a}</selection>def"
}