Files
kotlin-fork/idea/testData/intentions/convertToStringTemplateIntention/doesNotCorruptExistingTemplate.kt
T

6 lines
104 B
Kotlin

fun main(args: Array<String>){
val x = "abc"
val y = "cde"
val z = "$y" +<caret> "$x.bar"
}