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