shithub: mc

ref: 6ffd7e7a7d3581d6d101a17767fcaf20a797a041
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)
}