shithub: mc

ref: e119045a1d483c7dc7808c140a3659e41b9d160b
dir: /test/nestfn.myr/

View raw version
use std
/* checks that nested functions without environment capture work. should
* exit with 42. */
const main = {
	const ret42 = {
		-> 42
	}
	-> ret42()
}