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

7 lines
121 B
Plaintext
Vendored

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