shithub: mc

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