shithub: mc

ref: 8b5f4d4fdea2570a444dec28569f65c43dcd0484
dir: /test/nestfn.myr/

View raw version
use std
/* checks that nested functions without environment capture work. should
* exit with 42. */
const main = {
	const ret42 = {
		-> 42
	}
	-> ret42()
}