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