ref: 177573cce9c9ec978a88fe23814422fa2c740b0e dir: /test/derefassign.myr/
use std /* should assign to v through pointer p, exiting with 123 */ const main = { var p var v p = &v p# = 123 std.exit(v) }