shithub: mc

ref: 5f8ce4d91c5ae77dad2eb17b7a005723b2b8a90f
dir: /test/ptrpreinc.myr/

View raw version
use std
/* should preincrement through a pointer, exiting with status 9 */
const ppreinc = {p
	-> ++p#
}

const main = {
	var x = 8

	-> ppreinc(&x)
}