ref: 9673e11f4a1c9d3376a74d444e7c2e21ad65ebf2 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#) }