shithub: mc

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