Indent for multideclarations

This commit is contained in:
Nikolay Krasko
2014-05-13 20:48:12 +04:00
parent b958e0d6b8
commit 356cb80e7f
9 changed files with 44 additions and 1 deletions
@@ -0,0 +1,7 @@
fun test() {
val (a, b) =
Pair(true, false)
val (c, d)
= Pair(true, false)
}