ref: 81693eb29061bb06a48cc634ab3b6e30883bcbd3
parent: 7c69174cd4be1feb2d7d6b960f02b745cf457bb0
author: Ori Bernstein <[email protected]>
date: Tue May 28 12:43:36 EDT 2013
Add missing file.
--- /dev/null
+++ b/test/exportcycle.myr
@@ -1,0 +1,13 @@
+use std
+/* This test checks that cyclic types will be output
+ * by muse. */
+pkg =
+ type list = struct
+ next : list#
+ val : int
+ ;;
+;;
+
+const main = {
+ -> 0
+}