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