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