From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id NAA11877; Wed, 6 Nov 2002 13:57:12 +0100 (MET) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id NAA12329 for ; Wed, 6 Nov 2002 13:57:12 +0100 (MET) Received: from comtv.ru (comtv.ru [217.10.32.4]) by concorde.inria.fr (8.11.1/8.11.1) with ESMTP id gA6CvA523788 for ; Wed, 6 Nov 2002 13:57:11 +0100 (MET) Received: from [10.0.66.9] ([10.0.66.9] verified) by comtv.ru (CommuniGate Pro SMTP 4.0) with ESMTP-TLS id 5375014 for caml-list@inria.fr; Wed, 06 Nov 2002 15:57:07 +0300 Date: Wed, 6 Nov 2002 15:57:49 +0300 (MSK) From: malc X-X-Sender: malc@home.oyster.ru To: caml-list@inria.fr Subject: [Caml-list] Records typing Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk # module type T = sig type t type r = { f : t } end;; module type T = sig type t and r = { f : t; } end # module M : T with type t = float = struct type t = float type r = { f : t } end;; Signature mismatch: Modules do not match: sig type t = float and r = { f : t; } end is not included in sig type t = float and r = { f : t; } end Type declarations do not match: type r = { f : t; } is not included in type r = { f : t; } Is there a way to work around this? -- mailto:malc@pulsesoft.com ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners