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