ref: 34c3e5b0116a5283433c9cf6c3484ee6967e3030 dir: /test/arrayaddr.myr/
/* tests taking the address of array elements. should exit with 42. */ const main = { var v : int[3] var p v[1] = 42 p = &v[1] -> *p }