shithub: mc

ref: 5cacde485bf6338bbf216b7a5249bb51c84e15fc
dir: /test/nestfn.myr/

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