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