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