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