shithub: mc

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