shithub: mc

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