shithub: mc

ref: 00963a8a8348d7ef25eaa31cf4b0b4a3cc4036d3
dir: /test/arrayaddr.myr/

View raw version
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#)
}