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