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