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