caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Jeremy Yallop <jeremy.yallop@ed.ac.uk>
To: caml users <caml-list@inria.fr>
Subject: Recursive modules and variance
Date: Thu, 26 Jun 2008 20:54:57 +0100	[thread overview]
Message-ID: <4863F411.4030701@ed.ac.uk> (raw)

Should variance annotations be visible to modules in the same recursive 
group?

The following program is accepted by OCaml 3.10.2

        module M : sig type +'a t end =
                struct type +'a t end
        module N : sig type +'a t = 'a M.t end =
                struct type +'a t = 'a M.t end

but the following program is rejected

    module rec M : sig type +'a t end =
                struct type +'a t end
           and N : sig type +'a t = 'a M.t end =
                struct type +'a t = 'a M.t end

with the message

    "In this definition, expected parameter variances are not satisfied.
     The 1st type parameter was expected to be covariant,
     but it is invariant"

Jeremy.


                 reply	other threads:[~2008-06-26 19:55 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4863F411.4030701@ed.ac.uk \
    --to=jeremy.yallop@ed.ac.uk \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).