shithub: mc

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