Implement parsing of desctructuring declarations in lambdas

#KT-5828 In Progress
This commit is contained in:
Denis Zharkov
2016-09-15 11:39:11 +03:00
parent 000ba33f59
commit 75a51d915f
10 changed files with 673 additions and 391 deletions
+5
View File
@@ -0,0 +1,5 @@
fun foo() {
a8.filter { ((x, y), z) -> foo8() }
a9.filter { (x -> foo9() }
a10.filter { (x, y :) : -> foo10() }
}