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