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