Don't indent closing parenthesis of a destructuring declaration

#KT-20758 Fixed
This commit is contained in:
Dmitry Jemerov
2017-11-17 13:42:25 +01:00
parent 4068b3d9b9
commit 26d47a034e
3 changed files with 17 additions and 1 deletions
+8
View File
@@ -4,4 +4,12 @@ fun test() {
val (c, d)
= Pair(true, false)
val (
distributor,
items,
shippingMethods,
addresses,
preferredAddressId
) = argument
}