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