shithub: mc

ref: 6880f73fd5b9578a804856ee907bf246bba2687d
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()
}