ref: 6c0abd35bf78b06cc3e25d36312609934e443952 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 }