Iterate Intention: Add support of destructuring declarations

This commit is contained in:
Alexey Sedunov
2015-12-17 21:30:14 +03:00
parent 1d3054e7a6
commit ae636a0d32
10 changed files with 158 additions and 56 deletions
@@ -0,0 +1,6 @@
// WITH_RUNTIME
data class Foo(val id: Int, val name: String)
fun test() {
listOf(Foo(123, "def"), Foo(456, "abc"))<caret>
}