ref: 493a0c8839f5f8b25c60146a8e326653bef190c6 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 -> v }