ref: c20862cda53c711fe476f6c7d0f6631af47a4933 dir: /test/derefassign.myr/
use std /* should assign to v through pointer p, exiting with 123 */ const main = { var p var v v = 0 p = &v p# = 123 std.exit(v) }