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