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