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