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

#KT-22374 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-01-22 17:42:06 +09:00
committed by Nikolay Krasko
parent c06aaf6128
commit 4232ad8dfe
7 changed files with 88 additions and 15 deletions
@@ -0,0 +1,5 @@
val foo = "test"
val s = "1" + "2" +
foo + "4" +<caret>
"5" + foo +
"7" + "8"