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