shithub: mc

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