shithub: mc

ref: 1252169ce7027d50158d5a12bad0a2a1b92ce3f7
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
	}
	-> ret42()
}