shithub: mc

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