shithub: mc

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