shithub: mc

ref: 4ccc52b8ed3c89262a3ee72bfdd05de1a3d0441c
dir: /test/exportcycle.myr/

View raw version
use std
/* This test checks that cyclic types will be output
 * by muse. */
pkg =
	type list = struct
		next	: list#
		val	: int
	;;
;;

const main = {
}