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