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