shithub: mc

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