shithub: mc

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