Files
kotlin-fork/idea/testData/refactoring/introduceVariable/stringTemplates/fullEntryWithSimpleName.kt
T
2015-11-24 20:40:15 +03:00

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"
}