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