ref: 49a846b16c0187b5f59fc7bb7c336b919f5342ac 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) }