"Join lines" works incorrectly in case of line containing more than one string literal (KT-22374)
#KT-22374 Fixed
This commit is contained in:
committed by
Nikolay Krasko
parent
cc346aef64
commit
7e417272b2
@@ -0,0 +1,5 @@
|
||||
fun test() {
|
||||
val s = "1" +
|
||||
"2" +<caret>
|
||||
"3"
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
fun test() {
|
||||
val s = "1" +
|
||||
"2<caret>3"
|
||||
}
|
||||
Reference in New Issue
Block a user