shithub: mc

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