shithub: mc

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