diff --git a/src/core/CCEqual.ml b/src/core/CCEqual.ml index 9bcafb7e..90c98cbc 100644 --- a/src/core/CCEqual.ml +++ b/src/core/CCEqual.ml @@ -7,10 +7,10 @@ type 'a t = 'a -> 'a -> bool let poly = (=) -let int = (=) -let string = (=) -let bool = (=) -let float = (=) +let int : int t = (=) +let string : string t = (=) +let bool : bool t = (=) +let float : float t = (=) let rec list f l1 l2 = match l1, l2 with | [], [] -> true