ref: 6368976a9e8e4121c5867ec81842e1d4bac55351 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) }