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

6 lines
144 B
Kotlin
Vendored

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