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