shithub: mc

ref: b6c0b67ea6692977eff0cd08d2a4d9b6a66297aa
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 = {
}