ref: 75e90d91c0c50fb64812e61c21da8cbc8f1d3e5e dir: /test/ptrpreinc.myr/
use std /* should preincrement through a pointer, exiting with status 9 */ const ppreinc = {p -> ++p# } const main = { var x = 8 std.exit(ppreinc(&x)) }