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