ref: 02f19e5b2e6a94199d6eb9a97417e1feb3b2d0aa 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)) }