ref: a5a4e162cec3bb59c7d88a703d45edc916392453 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) }