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