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