Fix formatting in "simplify call chain" #KT-28576 Fixed

This commit is contained in:
Mikhail Glukhikh
2018-11-30 22:20:12 +03:00
parent a3909d8e47
commit de33905c44
4 changed files with 38 additions and 24 deletions
@@ -1,7 +1,7 @@
// WITH_RUNTIME
val x = listOf(1, 2, 3).joinToString(prefix = "= ", separator = " + ") {
val sb = StringBuilder()
sb.append(it).append(" + ").append(it)
sb
val sb = StringBuilder()
sb.append(it).append(" + ").append(it)
sb
}