Remove braces intention: fix caret position

#KT-31443 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-05-16 12:07:33 +09:00
committed by Dmitry Gridin
parent 90c3269502
commit 04638eea6b
7 changed files with 16 additions and 9 deletions
@@ -3,5 +3,5 @@ fun test(b: Boolean) {
val list1 = mutableListOf(1)
val list2 = mutableListOf(2)
(if (b) {list1} else list2) += 3
(if (b) {list1} else list2<caret>) += 3
}