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