shithub: mc

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