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