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