ref: 3cbdb83dbbc80b2c8a3458e5b1a1ae5d3080fb3b dir: /test/arrayaddr.myr/
use std /* 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# }