shithub: mc

ref: 9fc485a80b9713c1581a3c734d2d2bbf347f80e7
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)
}