ref: b33ad4ba9ef23d2dbeec7fcd895d80c1c7d45026 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 }