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