ref: dc0ce7c68fd5e1a56a13960ba7121a38da0a55cb 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# }