Change Signature: Fix processing of lambda arguments

This commit is contained in:
Alexey Sedunov
2015-03-30 19:08:49 +03:00
parent 61d0bcdf76
commit d65b55e147
17 changed files with 204 additions and 51 deletions
@@ -0,0 +1,9 @@
fun (() -> Int).foo(x: Int, y: Int): Int {
return x + this()
}
fun bar() {
{
3
}.foo(1, 2)
}