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