shithub: mc

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