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