shithub: mc

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