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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,82f2e791e7842c9b X-Google-Attributes: gid103376,public From: bobduff@world.std.com (Robert A Duff) Subject: Re: Question on generic child packages Date: 1997/04/04 Message-ID: #1/1 X-Deja-AN: 230543006 References: <860128719.11snx@jvdsys.nextjk.stuyts.nl> Organization: The World Public Access UNIX, Brookline, MA Newsgroups: comp.lang.ada Date: 1997-04-04T00:00:00+00:00 List-Id: In article <860128719.11snx@jvdsys.nextjk.stuyts.nl>, Jerry van Dijk wrote: >2 generic >3 type Some_Type is private; >4 private package Demo.Child is >5 >6 end Demo.Child; Try "private generic ... package Demo.Child is ...". See RM-10.1.1(4), and follow the syntax rules from there. - Bob