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