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