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