ref: 3eebcf6c31e23b12d11332f3b424bfe91dc66dcc 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 }