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