shithub: mc

ref: 3dc71f6baaf6ff6a7e5a41fd89ea3ec2c7bdf88c
dir: /test/neststruct.myr/

View raw version
/* tests that nested structs work. should exit with 3 */
type s1 = struct
	x : s2
;;

type s2 = struct
	a : int
	b : int
;;

const main = {
	var s1 : s1
	var s2 : s2

	s1.x.a = 1
	s1.x.b = 2
	s2 = s1.x

	-> s2.a + s2.b
}