ref: c72e1e94349fb533aaa9a35e126b77cb3c0d5610 dir: /test/nestfn.myr/
use std /* checks that nested functions without environment capture work. should * exit with 42. */ const main = { const ret42 = { -> 42 } std.exit(ret42()) }