shithub: mc

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