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