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