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