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