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