ref: 40d6f7b5cc0cb9e5de1675a1441ad0dfc0a66bda 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#) }