shithub: mc

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