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