shithub: mc

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