ref: 4ef66b11ded8bc99387219a81328d33c775ce7a9 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 }