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