changeset 77:a1026ae076ea

Another test of broad unification
author Adam Chlipala <adamc@hcoop.net>
date Sun, 29 Jun 2008 10:44:36 -0400
parents 522f4bd3955e
children a6d45c6819c9
files tests/sig_wild.lac
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/sig_wild.lac	Sun Jun 29 10:44:36 2008 -0400
@@ -0,0 +1,9 @@
+signature S = sig
+        type t
+        val x : t
+end
+
+structure M : S = struct
+        type t = _
+        val x = 0
+end