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