ref: 1252169ce7027d50158d5a12bad0a2a1b92ce3f7 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 }