ref: c5feb1c4f2a7b26239d074c1983b953df29ebff7 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()) }