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