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