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