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