diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-29 10:44:36 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-29 10:44:36 -0400 |
commit | b7f84c57522b12bdbd4a7056e5d4f58009a48c95 (patch) | |
tree | a3d83e0aa046063a617da41a5a747f444e2dca07 /tests/sig_wild.lac | |
parent | d8ceac1d02caeffbe44865dfd2573863adc535ba (diff) |
Another test of broad unification
Diffstat (limited to 'tests/sig_wild.lac')
-rw-r--r-- | tests/sig_wild.lac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/sig_wild.lac b/tests/sig_wild.lac new file mode 100644 index 00000000..3f714772 --- /dev/null +++ b/tests/sig_wild.lac @@ -0,0 +1,9 @@ +signature S = sig + type t + val x : t +end + +structure M : S = struct + type t = _ + val x = 0 +end |