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,7cc62a3e4497b0b,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-06-11 09:52:54 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news.ems.psu.edu!news.cse.psu.edu!uwm.edu!htc.honeywell.com!not-for-mail From: Steve Vestal Newsgroups: comp.lang.ada Subject: Q: generic children of generic packages? Date: 11 Jun 2001 11:35:12 -0500 Organization: Honeywell Technology Center, Mpls. MN, USA. Sender: vestal@grinch.htc.honeywell.com Message-ID: NNTP-Posting-Host: grinch.htc.honeywell.com X-Newsreader: Gnus v5.4.37/XEmacs 19.16 Xref: archiver1.google.com comp.lang.ada:8557 Date: 2001-06-11T11:35:12-05:00 List-Id: I'm trying to do something like: generic ... package Generic_Stuff is ... private ... end Generic_Stuff; generic ... package Generic_Stuff.Generic_IO is ... end Generic_Stuff.Generic_IO; Does anyone know how to make this work? (My intuition was that an instantiation of Generic_Stuff would have a child Generic_IO that could in turn be instantiated, but gnat doesn't seem to let me do that.)