From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by sympa.inria.fr (Postfix) with ESMTPS id 2592D7EEEF for ; Wed, 10 Jun 2015 17:08:44 +0200 (CEST) Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of oliver@first.in-berlin.de) identity=pra; client-ip=192.109.42.8; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="oliver@first.in-berlin.de"; x-sender="oliver@first.in-berlin.de"; x-conformance=sidf_compatible Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of oliver@first.in-berlin.de) identity=mailfrom; client-ip=192.109.42.8; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="oliver@first.in-berlin.de"; x-sender="oliver@first.in-berlin.de"; x-conformance=sidf_compatible Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of postmaster@einhorn.in-berlin.de) identity=helo; client-ip=192.109.42.8; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="oliver@first.in-berlin.de"; x-sender="postmaster@einhorn.in-berlin.de"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0CvAQB2UnhVlAgqbcBcg2RfBoMYvE6FfgKBNkwBAQEBAQESAQEBAQkLCQkhLoQjAQEBAgEjFUYWGgIYDgIjNhmIGQMKCAQJnTGPX55cDYVADCCBIYoigk2CQBaCUi+BFgWYEIUQgV8EiAqIXIVagTiEHm0BgkYBAQE X-IPAS-Result: A0CvAQB2UnhVlAgqbcBcg2RfBoMYvE6FfgKBNkwBAQEBAQESAQEBAQkLCQkhLoQjAQEBAgEjFUYWGgIYDgIjNhmIGQMKCAQJnTGPX55cDYVADCCBIYoigk2CQBaCUi+BFgWYEIUQgV8EiAqIXIVagTiEHm0BgkYBAQE X-IronPort-AV: E=Sophos;i="5.13,588,1427752800"; d="scan'208";a="135506782" Received: from einhorn.in-berlin.de ([192.109.42.8]) by mail3-smtp-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES256-SHA; 10 Jun 2015 17:08:43 +0200 X-Envelope-From: oliver@first.in-berlin.de X-Envelope-To: Received: from localhost (yak.in-berlin.de [192.109.42.109]) by einhorn.in-berlin.de (8.14.4/8.14.4/Debian-4) with ESMTP id t5AF8fwW021127 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Wed, 10 Jun 2015 17:08:41 +0200 Received: from x55b20df3.dyn.telefonica.de (x55b20df3.dyn.telefonica.de [85.178.13.243]) by webmail.in-berlin.de (Horde Framework) with HTTP; Wed, 10 Jun 2015 17:08:41 +0200 Date: Wed, 10 Jun 2015 17:08:41 +0200 Message-ID: <20150610170841.Horde.htyXS11XXPG3ZB3aJltRwA5@webmail.in-berlin.de> From: Oliver Bandel To: caml-list@inria.fr In-Reply-To: User-Agent: Horde Application Framework 5 Content-Type: text/plain; charset=utf-8; format=flowed; DelSp=Yes MIME-Version: 1.0 Content-Disposition: inline Subject: Re: [Caml-list] Qualifying Module Names Zitat von Kenneth Adam Miller (Wed, 10 Jun 2015 10:16:51 -0400) > I ran into a quirk today- > > I noticed that if I first do: > > open My_module.Submodule > module Blah = Foo.Bar > > That my code would compile, but doing this: > > module Blah = My_module.Submodule.Foo.Bar > > will *not*. Why is that? [...] A detailed error message would be helpful... But on first sight it could be, that stuff from My_module.Submodule is needed in the compilation unit, in which the "open" and "module" are located. Ciao, Oliver