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