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