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