Files
kotlin-fork/idea/testData/intentions/convertToStringTemplate/longTemplatePlusStringLiteral.kt
T

5 lines
77 B
Kotlin
Vendored

fun foo() {
val nv1 = 1
val nv2 = "prefix $nv1" + <caret>"postfix"
}