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