shithub: mc

ref: 1b52ea9d5660f5b21a465f59448941212b2f921e
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
	}
	std.exit(ret42())
}