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,2948948ddf794344 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!y80g2000hsf.googlegroups.com!not-for-mail From: "Adam Beneschan" Newsgroups: comp.lang.ada Subject: Re: Stupid question Date: 12 Apr 2007 14:40:32 -0700 Organization: http://groups.google.com Message-ID: <1176414032.163717.31900@y80g2000hsf.googlegroups.com> References: NNTP-Posting-Host: 66.126.103.122 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1176414032 24882 127.0.0.1 (12 Apr 2007 21:40:32 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 12 Apr 2007 21:40:32 +0000 (UTC) In-Reply-To: User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.7.12-1.3.1,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: y80g2000hsf.googlegroups.com; posting-host=66.126.103.122; posting-account=cw1zeQwAAABOY2vF_g6V_9cdsyY_wV9w Xref: g2news1.google.com comp.lang.ada:14968 Date: 2007-04-12T14:40:32-07:00 List-Id: On Apr 12, 1:05 pm, "Dmitry A. Kazakov" wrote: > generic > package A is > A1 : Integer; > end A; > > generic > package A.B is > end A.B; > > with A.B; > generic > with package A_B is new A.B (<>); > package C is > -- What is the name of A1 from A of A_B? > end C; I am betting that if you try to compile just the code snippet you've got, you will figure out your answer. -- Adam