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