shithub: mc

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