shithub: mc

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