shithub: mc

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