Implement parsing of desctructuring declarations in lambdas
#KT-5828 In Progress
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
fun foo() {
|
||||
a1.filter { (x, y) -> }
|
||||
a2.filter { (x) -> }
|
||||
a3.filter { z, (x, y) -> }
|
||||
a4.filter { (x, y), z -> }
|
||||
a5.filter { q, (x, y), z -> }
|
||||
a6.filter { (x, y), (z, w) -> }
|
||||
|
||||
a7.filter { (x, y): Type, (z: Type), (w, u: T) : V -> foo7() }
|
||||
}
|
||||
Reference in New Issue
Block a user