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