diff tests/sig_wild.lac @ 77:a1026ae076ea

Another test of broad unification
author Adam Chlipala <adamc@hcoop.net>
date Sun, 29 Jun 2008 10:44:36 -0400
parents
children
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