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