From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,c44ee8971ec5741c X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!newshub.sdsu.edu!elnk-nf2-pas!elnk-pas-nf1!newsfeed.earthlink.net!stamper.news.pas.earthlink.net!newsread3.news.pas.earthlink.net.POSTED!a6202946!not-for-mail From: Jeffrey Carter Organization: jrcarter commercial-at acm [period | full stop] org User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Disambiguation References: <42BBF5F1.3050707@mailinator.com> In-Reply-To: <42BBF5F1.3050707@mailinator.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Message-ID: Date: Sat, 25 Jun 2005 05:56:53 GMT NNTP-Posting-Host: 67.3.210.166 X-Complaints-To: abuse@earthlink.net X-Trace: newsread3.news.pas.earthlink.net 1119679013 67.3.210.166 (Fri, 24 Jun 2005 22:56:53 PDT) NNTP-Posting-Date: Fri, 24 Jun 2005 22:56:53 PDT Xref: g2news1.google.com comp.lang.ada:11637 Date: 2005-06-25T05:56:53+00:00 List-Id: Alex R. Mosteo wrote: > Hello, see this test program: Everything in Ada has a complete name starting with Standard. > > procedure Test_Ambig is this is Standard.Test_Ambig. > > type X is (Data, Meta); These are Standard.Test_Ambig.X, Standard.Test_Ambig.Data, & Standard.Test_Ambig.Meta. > > procedure Foo (Data : in Natural) is These are Standard.Test_Ambig.Foo and Standard.Test_Ambig.Foo.Data. > Z : constant X := Meta; This is Standard.Test_Ambig.Foo.Z. Generally, you can leave off the "Standard." :) -- Jeff Carter "No one is to stone anyone until I blow this whistle, do you understand? Even--and I want to make this absolutely clear--even if they do say, 'Jehovah.'" Monty Python's Life of Brian 74