Created
November 27, 2015 13:58
-
-
Save gsg/42c48c5429c61b8b430f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module rec A : sig | |
type t = X of ASet.t | Y | |
val compare : t -> t -> int | |
end = struct | |
type t = X of ASet.t | Y | |
let compare = Pervasives.compare | |
end | |
and ASet : Set.S with type elt = A.t = Set.Make(A) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment