caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] types not equal when I expect them to be
@ 2012-03-01 16:38 Ashish Agarwal
  2012-03-01 22:18 ` Gabriel Scherer
  0 siblings, 1 reply; 3+ messages in thread
From: Ashish Agarwal @ 2012-03-01 16:38 UTC (permalink / raw)
  To: Caml List

[-- Attachment #1: Type: text/plain, Size: 1112 bytes --]

The following code fails to compile:

----- a.ml ----
module Foo = struct
  module St = struct type t = string let compare = compare end

  module Map (* : Map.S with type key = St.t *)
    = Map.Make(St)

  (* module Map = Map.Make(struct type t = string let compare = compare
end) *)
end

module Bar = struct
  type t = int Foo.Map.t
end

module Pack = struct
  module Foo = Foo
  module Bar = Bar
end

open Pack
let x : Bar.t = Foo.Map.empty
----

$ ocamlc -c foo.ml
File "foo.ml", line 20, characters 16-29: (* refers to Foo.Map.empty on
last line *)
Error: This expression has type
         'a Pack.Foo.Map.t = 'a Map.Make(Pack.Foo.St).t
       but an expression was expected of type
         Pack.Bar.t = int Map.Make(Foo.St).t


So Pack.Foo and Foo are not compatible. By trial and error, I found two
ways to resolve the problem:

1) Provide an explicit signature for Foo.Map (uncomment the provided
signature), or
2) Inline the structure passed to Map.Make (comment out first definition of
Foo.Map and uncomment the second one)

But I don't understand why. Can anyone explain the main points. Thank you.

[-- Attachment #2: Type: text/html, Size: 1737 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread
[parent not found: <fa.O3xm0idbEURic/azoi8VH23mQEw@ifi.uio.no>]

end of thread, other threads:[~2012-03-07  8:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-01 16:38 [Caml-list] types not equal when I expect them to be Ashish Agarwal
2012-03-01 22:18 ` Gabriel Scherer
     [not found] <fa.O3xm0idbEURic/azoi8VH23mQEw@ifi.uio.no>
2012-03-07  8:02 ` Radu Grigore

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).