shithub: mc

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