ref: ae702f148386526a4043f675917ba4c2b3ac41b2 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 std.exit(v) }