shithub: mc

ref: f61764f57d5b9b8e9e72a3c7eb1eead702cf3108
dir: /test/ptrpreinc.myr/

View raw version
/* should preincrement through a pointer, exiting with status 9 */
const ppreinc = {p
	-> ++*p
}

const main = {
	var x = 8

	-> ppreinc(&x)
}