shithub: mc

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