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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,4200259190b16e16 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-28 03:23:51 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: petter.fryklund@atero.se (Petter Fryklund) Newsgroups: comp.lang.ada Subject: Re: Visibility problems with package instantiations..... Date: 28 Nov 2003 03:23:50 -0800 Organization: http://groups.google.com Message-ID: <95234e08.0311280323.7a5bb870@posting.google.com> References: <95234e08.0311270742.631b1228@posting.google.com> <349csv0udb5k0kuk0q99d7tm7fh5leuefu@4ax.com> NNTP-Posting-Host: 138.14.239.132 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1070018631 5554 127.0.0.1 (28 Nov 2003 11:23:51 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 28 Nov 2003 11:23:51 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:3019 Date: 2003-11-28T03:23:50-08:00 List-Id: Thanks Dmitry! Now taking this further. If Gen_3 only needs a few of the parameters of the instantiation of Inst_2 to be correct or known, wouldn't it be nice to be able to do: with Gen_0; with Gen_1; -- with 200 other parameters .... generic with package Inst_0 is new Gen_0 (<>); with package Inst_1 is new Gen_1 (Inst_0 => Inst_0, others => (<>)); package Gen_2 is ..... Regards, Petter