caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: rixed@happyleptic.org
To: caml-list@inria.fr
Subject: [Caml-list] phantom types and coercion
Date: Mon, 28 Oct 2019 15:27:43 +0100	[thread overview]
Message-ID: <b070e40a-3ff9-4ede-8c95-6219fc76f723@www.fastmail.com> (raw)

Hello list.

I'm trying to use several parameters in a phantom type ; everything works alright, but coercion.
For instance, in the code below, how come s1 can be coerced into a string by s2 cannot ?

# module M : sig type +'a t = private string val m1 : string -> [`C1] t val m2 : string -> ([`C2] * 'a) t end = struct type 'a t = string let m1 s = s let m2 s = s end;;   module M :
  sig
    type +'a t = private string
    val m1 : string -> [ `C1 ] t
    val m2 : string -> ([ `C2 ] * 'a) t
  end
# let s1 = M.m1 "foo";;
val s1 : [ `C1 ] M.t = "foo"
# let s2 = M.m2 "bar";;
val s2 : ([ `C2 ] * 'a) M.t = "bar"
# print_string (s1 :> string);;
foo- : unit = ()
# print_string (s2 :> string);;
Error: This expression cannot be coerced to type string; it has type
         ([ `C2 ] * 'a) M.t
       but is here used with type string


             reply	other threads:[~2019-10-28 14:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-28 14:27 rixed [this message]
2019-10-28 15:10 ` Jacques Garrigue
2019-10-28 16:45   ` rixed

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=b070e40a-3ff9-4ede-8c95-6219fc76f723@www.fastmail.com \
    --to=rixed@happyleptic.org \
    --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).