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