shithub: mc

ref: 905f4d10a78e7e2f6eb849cf373b14cd78c87d73
dir: /test/genericrec.myr/

View raw version
use std
/* test that generic types can be recursive, as long as they're not self
 * including. This just needs to compile and exit with 0. */
type list(@t) = struct
	val	: @t
	next	: list(@t)#
;;

const main = {
	var v : list(int)

	v.val = 123
	v.next = std.alloc()
	v.next.val = 234
	var n = std.alloc()
	v.next.next = n
	n.val = 345
}