ref: 0ce2bbf3b5dbb9c899a9a680ff8262be44b1d5ef 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)) }