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