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