shithub: mc

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