shithub: mc

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