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