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