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