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