Files
kotlin-fork/idea/testData/intentions/convertToStringTemplate/interpolate3Left.kt
T
Valentin Kipyatkov 94480e3d5c Renamed in test data
2015-04-16 22:00:53 +03:00

6 lines
100 B
Kotlin
Vendored

fun main(args: Array<String>){
val a = "abc"
val c = "bcd"
val x = a +<caret> "b" + c
}