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