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