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