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