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,99e8b9cfc31999f4 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news.glorb.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local1.nntp.dca.giganews.com!nntp.megapath.net!news.megapath.net.POSTED!not-for-mail NNTP-Posting-Date: Wed, 07 Jul 2004 15:31:34 -0500 From: "Randy Brukardt" Newsgroups: comp.lang.ada References: <5f59677c.0407070157.7e5d523@posting.google.com> <5f59677c.0407071151.697198f6@posting.google.com> Subject: Re: explanation about an error message Date: Wed, 7 Jul 2004 15:32:03 -0500 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Message-ID: <0cSdnX3RzpU7wHHdRVn-iQ@megapath.net> NNTP-Posting-Host: 64.32.209.38 X-Trace: sv3-ixDN/Ube4Hvt+O9BoKwFy5E41wtzhYIbI9vz2hvBCrEee2LELBlTaYCsDC2IQGEmPldlbrwYhoHDCWX!JOBWURzd+PuWj/yDZuBFZuUde+rkStXtYbaH2bZVv6L2OTNMl23gp5SDJmwMVnIyfn35y+PTLYvu X-Complaints-To: abuse@megapath.net X-DMCA-Complaints-To: abuse@megapath.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.1 Xref: g2news1.google.com comp.lang.ada:2106 Date: 2004-07-07T15:32:03-05:00 List-Id: "Evangelista Sami" wrote in message news:5f59677c.0407071151.697198f6@posting.google.com... ... > > 11. oops := Vars.Decls.decl_foo; > > | > > >>> "Decls" is not a visible entity of "Vars" > > > so what i'm tryng to do is impossible? Possibly. I wonder why Decls.Vars is a private package in the first place. The usual intent is to keep the package from being used outside of the Generators hierarchy, but that is already accomplished by Decls.Vars being private. So, if Decls.Vars was a non-private package, you wouldn't have the problem. It still couldn't be withed by clients of Generators, as Decls would still be private. Randy.