# HG changeset patch # User Adam Chlipala # Date 1214750676 14400 # Node ID a1026ae076ea200826a80fcb9b3b8ef9b168aff4 # Parent 522f4bd3955e87e02eee0a509145b0e796487450 Another test of broad unification diff -r 522f4bd3955e -r a1026ae076ea tests/sig_wild.lac --- /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