view tests/modules.lac @ 31:1c91c5e6840f

Simple signature matching
author Adam Chlipala <adamc@hcoop.net>
date Thu, 12 Jun 2008 17:16:20 -0400
parents
children 0ff8c2728634
line wrap: on
line source
signature A = sig end
structure A = struct end
structure Ao : A = A


structure B = struct
        type t = int
end
structure Bo0 : sig end = B
structure BoA : A = B

signature B1 = sig
        type t
end
structure Bo1 : B1 = B
(*structure AoB1 : B1 = A*)

signature B2 = sig
        type t = int
end
structure Bo2 : B2 = B


structure C = struct
        type t = float
end
structure CoB1 : B1 = C
(*structure CoB2 : B2 = C*)