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