Introduce Variable: Support destructuring declarations

#KT-6262
This commit is contained in:
Alexey Sedunov
2015-11-24 17:06:09 +03:00
parent 09f8aafb77
commit 7a40239e64
14 changed files with 297 additions and 44 deletions
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun test() {
val (i, i1) = 1 to 2
}