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