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