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