ref: 3e9a366b35c16c7f372b56c47ba020cbf61f9937 dir: /test/derefassign.myr/
use std /* should assign to v through pointer p, exiting with 123 */ const main = { var p var v v = 0 p = &v p# = 123 std.exit(v) }