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