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