comparison 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
comparison
equal deleted inserted replaced
76:522f4bd3955e 77:a1026ae076ea
1 signature S = sig
2 type t
3 val x : t
4 end
5
6 structure M : S = struct
7 type t = _
8 val x = 0
9 end