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