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