shithub: mc

ref: 6c0e6856de4a72b7d6ab99a184d213b18a3dea14
dir: /test/neststruct.myr/

View raw version
use std
/* 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

	std.exit(s2.a + s2.b)
}