From: Patrick M Doane <patrick@watson.org>
To: caml-list@inria.fr
Subject: [Caml-list] Objects and private methods
Date: Thu, 20 Dec 2001 22:02:52 -0500 (EST) [thread overview]
Message-ID: <20011220215627.C91723-100000@fledge.watson.org> (raw)
I'm having some trouble getting the following type of structure to
type-check:
class type a = object method get_b : a end
and b = object method b : unit end
class a_impl =
(object (self)
method get_b = (self :> b)
method private b = ()
end : a)
;;
This produces the error message:
The class type object method b : unit method get_b : b end
is not matched by the class type a
The public method b cannot be hidden
The basic idea is that the class 'a_impl' implements 'b' privately. This
seems like something that should be possible to do. I suspect that the
coercion of self to 'b' is causing the problem here.
I would have expected the failure to occur when coercing to type 'b' as
the method is declared private (which does not match the signature).
Any thoughts?
Thanks,
Patrick
-------------------
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
next reply other threads:[~2001-12-21 3:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-12-21 3:02 Patrick M Doane [this message]
2001-12-21 5:06 ` Jacques Garrigue
2001-12-21 5:29 ` Patrick M Doane
2001-12-21 8:40 ` Jacques Garrigue
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=20011220215627.C91723-100000@fledge.watson.org \
--to=patrick@watson.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