shithub: mc

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