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