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