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