ref: e366247a59d8cda17e9a7cf6c651abc554fe3360 dir: /test/derefassign.myr/
/* should assign to v through pointer p, exiting with 123 */ const main = { var p var v p = &v *p = 123 -> v }