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