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