"Join lines" works incorrectly in case of line containing more than one string literal (KT-22374)

#KT-22374 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-01-25 23:54:21 +09:00
committed by Nikolay Krasko
parent cc346aef64
commit 7e417272b2
4 changed files with 18 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
fun test() {
val s = "1" +
"2" +<caret>
"3"
}
@@ -0,0 +1,4 @@
fun test() {
val s = "1" +
"2<caret>3"
}