shithub: mc

ref: 95a76e16ded89189df3f85bfbaf5d40088e5cd97
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)
}