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