summaryrefslogtreecommitdiff
path: root/tests/modproj.lac
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modproj.lac')
-rw-r--r--tests/modproj.lac11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/modproj.lac b/tests/modproj.lac
new file mode 100644
index 00000000..ef2364d1
--- /dev/null
+++ b/tests/modproj.lac
@@ -0,0 +1,11 @@
+signature S = sig
+ type t
+ val zero : t
+end
+structure S : S = struct
+ type t = int
+ val zero = 0
+end
+
+type t = S.t
+val zero : t = S.zero