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