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