ref: b79e739ffcf4a2d7c6c177a257c63a24c7bc844f 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 }