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