shithub: mc

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