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