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