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