shithub: mc

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