ref: 3af73a7086c91dd6b94b5407081e4a9c80014a5b 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] std.exit(p#) }