Not yet, but almost

This commit is contained in:
Dmitry Boulytchev 2019-12-29 01:12:40 +03:00
parent 02dee40262
commit 39437712c7
7 changed files with 159 additions and 50 deletions

9
regression/test071.expr Normal file
View file

@ -0,0 +1,9 @@
fun f (x) {
fun g () {return x}
fun h () {return g}
return g
}
local n = read ();
write (f(5)())